github-pages-deploy-action/node_modules/core-js-pure/es/instance/flags.js

8 lines
220 B
JavaScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
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;
};