mirror of
https://github.com/gchq/CyberChef
synced 2025-12-10 13:23:25 +00:00
14 lines
317 B
JavaScript
14 lines
317 B
JavaScript
/**
|
|
* 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");
|