mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 22:22:58 +00:00

PR-URL: https://github.com/nodejs/io.js/pull/2286 Reviewed-By: Roman Reiss <me@silverwind.io>
17 lines
419 B
JavaScript
17 lines
419 B
JavaScript
'use strict';
|
|
|
|
var value = require('../../object/valid-value');
|
|
|
|
module.exports = function (search, replace) {
|
|
var index, pos = 0, str = String(value(this)), sl, rl;
|
|
search = String(search);
|
|
replace = String(replace);
|
|
sl = search.length;
|
|
rl = replace.length;
|
|
while ((index = str.indexOf(search, pos)) !== -1) {
|
|
str = str.slice(0, index) + replace + str.slice(index + sl);
|
|
pos = index + rl;
|
|
}
|
|
return str;
|
|
};
|