mirror of
https://github.com/gchq/CyberChef
synced 2025-01-08 10:38:46 +00:00
11 lines
286 B
JavaScript
11 lines
286 B
JavaScript
/**
|
|
* Export the main ESM module as CommonJS
|
|
*
|
|
*
|
|
* @author d98762656 [d98762625@gmail.com]
|
|
* @copyright Crown Copyright 2019
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
module.exports = (async () => await import("./index.mjs"))();
|
|
module.exports.File = (async () => await import("./File.mjs"))();
|