mirror of
https://github.com/gchq/CyberChef
synced 2025-12-21 10:43:18 +00:00
use std/esm to make chef compatible with cjs projects. Remove webpack work for node
This commit is contained in:
13
src/node/cjs.js
Normal file
13
src/node/cjs.js
Normal file
@@ -0,0 +1,13 @@
|
||||
/**
|
||||
* Export the main ESM module as CommonJS
|
||||
*
|
||||
*
|
||||
* @author d98762656 [d98762625@gmail.com]
|
||||
* @copyright Crown Copyright 2019
|
||||
* @license Apache-2.0
|
||||
*/
|
||||
|
||||
/*eslint no-global-assign: ["off"] */
|
||||
require = require("esm")(module);
|
||||
module.exports = require("./index.mjs");
|
||||
module.exports.File = require("./File.mjs");
|
||||
Reference in New Issue
Block a user