mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-14 01:56:54 -04:00
16 lines
270 B
JavaScript
16 lines
270 B
JavaScript
![]() |
/**
|
||
|
*
|
||
|
*/
|
||
|
class magicObject {
|
||
|
/**
|
||
|
*
|
||
|
* @param inRegexes
|
||
|
* @param outRegexes
|
||
|
*/
|
||
|
constructor (inRegexes = null, outRegexes = null) {
|
||
|
this.inRegexes = inRegexes;
|
||
|
this.outRegexes = outRegexes;
|
||
|
}
|
||
|
|
||
|
} export default magicObject;
|