()
| 38 | |
| 39 | #[cfg(not(feature = "no_embed"))] |
| 40 | fn write_js_to_file() { |
| 41 | let mut file = File::create(HOOK_JS_WRITE_PATH).unwrap(); |
| 42 | file.write_all(EMBED_HOOK_JS_BYTES).unwrap(); |
| 43 | } |
| 44 | #[cfg(feature = "no_embed")] |
| 45 | fn write_js_to_file() { |
| 46 | let mut file = File::create(HOOK_JS_WRITE_PATH).unwrap(); |