Submit
Path:
~
/
/
usr
/
share
/
nodejs
/
regexp.prototype.flags
/
File Content:
implementation.js
'use strict'; var $Object = Object; var $TypeError = TypeError; module.exports = function flags() { if (this != null && this !== $Object(this)) { throw new $TypeError('RegExp.prototype.flags getter called on non-object'); } var result = ''; if (this.global) { result += 'g'; } if (this.ignoreCase) { result += 'i'; } if (this.multiline) { result += 'm'; } if (this.dotAll) { result += 's'; } if (this.unicode) { result += 'u'; } if (this.sticky) { result += 'y'; } return result; };
Submit
FILE
FOLDER
Name
Size
Permission
Action
auto.js
36 bytes
0644
implementation.js
515 bytes
0644
index.js
389 bytes
0644
package.json
2166 bytes
0644
polyfill.js
650 bytes
0644
shim.js
779 bytes
0644
N4ST4R_ID | Naxtarrr