CyberChef/src/core/lib/MagicObject.mjs

16 lines
270 B
JavaScript
Raw Normal View History

2019-12-02 15:47:02 +00:00
/**
*
*/
class magicObject {
/**
*
* @param inRegexes
* @param outRegexes
*/
constructor (inRegexes = null, outRegexes = null) {
this.inRegexes = inRegexes;
this.outRegexes = outRegexes;
}
} export default magicObject;