mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-14 01:56:54 -04:00
Magic progress
This commit is contained in:
parent
9f3b185f77
commit
40c7e63046
5 changed files with 199 additions and 73 deletions
15
src/core/lib/MagicObject.mjs
Normal file
15
src/core/lib/MagicObject.mjs
Normal file
|
@ -0,0 +1,15 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
class magicObject {
|
||||
/**
|
||||
*
|
||||
* @param inRegexes
|
||||
* @param outRegexes
|
||||
*/
|
||||
constructor (inRegexes = null, outRegexes = null) {
|
||||
this.inRegexes = inRegexes;
|
||||
this.outRegexes = outRegexes;
|
||||
}
|
||||
|
||||
} export default magicObject;
|
Loading…
Add table
Add a link
Reference in a new issue