github-pages-deploy-action/node_modules/core-js-pure/es/instance/flags.js
2020-03-06 22:45:40 -05:00

8 lines
220 B
JavaScript

var flags = require('../regexp/flags');
var RegExpPrototype = RegExp.prototype;
module.exports = function (it) {
return (it === RegExpPrototype || it instanceof RegExp) && !('flags' in it) ? flags(it) : it.flags;
};