This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Regular expression to identify the null checker function within MakerSuite's code. | |
* @type {RegExp} | |
*/ | |
const NULL_CHECKER_REGEX = /function\(\){var a=new _\...,b=new ..;return _\.(..)\(a,..,1,b\)}/gm; | |
/** | |
* Default values for the control parameters. | |
* @type {object} | |
*/ |