mirror of
https://github.com/gchq/CyberChef
synced 2025-01-10 11:38:46 +00:00
18 lines
349 B
JavaScript
18 lines
349 B
JavaScript
/**
|
|
* Node view for CyberChef.
|
|
*
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
* @copyright Crown Copyright 2017
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
var Chef = require("../core/Chef.js");
|
|
|
|
module.exports = {
|
|
|
|
bake: function(input, recipeConfig) {
|
|
this.chef = new Chef();
|
|
return this.chef.bake(input, recipeConfig, {}, 0, false);
|
|
}
|
|
|
|
};
|