hazler_js_parser/lib.rs
1mod error;
2mod framework;
3mod parser;
4mod sourcemap;
5
6pub use error::{Error, Result};
7pub use framework::{detect_framework, get_framework_patterns, Framework};
8pub use parser::{FrameFileParser, JavaScriptParser};
9pub use sourcemap::{
10 InterestingPath, PathCategory, Priority, SourceMap, SourceMapAnalysis, SourceMapParser,
11 SourceMapReference,
12};