mirror of
https://github.com/gchq/CyberChef.git
synced 2026-03-09 16:57:42 +01:00
Fixed Node imports
This commit is contained in:
@@ -7,7 +7,5 @@
|
||||
* @license Apache-2.0
|
||||
*/
|
||||
|
||||
/* eslint no-global-assign: ["off"] */
|
||||
require = require("esm")(module);
|
||||
module.exports = require("./index.mjs");
|
||||
module.exports.File = require("./File.mjs");
|
||||
module.exports = (async () => await import("./index.mjs"))();
|
||||
module.exports.File = (async () => await import("./File.mjs"))();
|
||||
|
||||
Reference in New Issue
Block a user