mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-14 01:56:54 -04:00
mime-checking added to magic now
This commit is contained in:
parent
0a4fae1576
commit
ee37731858
5 changed files with 37 additions and 3 deletions
|
@ -5,10 +5,12 @@ class magicObject {
|
|||
/**
|
||||
* @param inRegexes
|
||||
* @param outRegexes
|
||||
* @param mimeCheck
|
||||
*/
|
||||
constructor (inRegexes = null, outRegexes = null) {
|
||||
constructor (inRegexes = null, outRegexes = null, mimeCheck = null) {
|
||||
this.inRegexes = inRegexes;
|
||||
this.outRegexes = outRegexes;
|
||||
this.mimeCheck = mimeCheck;
|
||||
}
|
||||
|
||||
} export default magicObject;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue