D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
ebrokers.online
/
node_modules
/
string.prototype.matchall
/
Filename :
polyfill.js
back
Copy
'use strict'; var implementation = require('./implementation'); module.exports = function getPolyfill() { if (String.prototype.matchAll) { try { ''.matchAll(RegExp.prototype); } catch (e) { return String.prototype.matchAll; } } return implementation; };