shim.js 192 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 "use strict"; var validRegExp = require("../../valid-reg-exp"); module.exports = function (string, replaceValue) { validRegExp(this); return String(string).replace(this, replaceValue); };