Blame view

node_modules/es5-ext/reg-exp/#/replace/shim.js 192 Bytes
f7563de62   Palak Handa   first commit
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);
  };