Gazebo_simulation-Frontend/node_modules/.cache/babel-loader/18a961c1baac918893a6968a5a0c2a75.json
2020-12-31 20:18:50 +00:00

1 line
654 B
JSON

{"ast":null,"code":"'use strict';\n\nvar toObject = Object;\nvar TypeErr = TypeError;\n\nmodule.exports = function flags() {\n if (this != null && this !== toObject(this)) {\n throw new TypeErr('RegExp.prototype.flags getter called on non-object');\n }\n\n var result = '';\n\n if (this.global) {\n result += 'g';\n }\n\n if (this.ignoreCase) {\n result += 'i';\n }\n\n if (this.multiline) {\n result += 'm';\n }\n\n if (this.dotAll) {\n result += 's';\n }\n\n if (this.unicode) {\n result += 'u';\n }\n\n if (this.sticky) {\n result += 'y';\n }\n\n return result;\n};","map":null,"metadata":{},"sourceType":"script"}