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

10 lines
300 B
JavaScript

var matchAll = require('../string/virtual/match-all');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.matchAll;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.matchAll) ? matchAll : own;
};