mirror of
https://github.com/Doodle3D/Doodle3D-API
synced 2024-12-23 14:13:47 +01:00
10 lines
276 B
JavaScript
10 lines
276 B
JavaScript
/* */
|
|
'use strict';
|
|
module.exports = function(regExp, replace, isStatic){
|
|
var replacer = replace === Object(replace) ? function(part){
|
|
return replace[part];
|
|
} : replace;
|
|
return function(it){
|
|
return String(isStatic ? it : this).replace(regExp, replacer);
|
|
};
|
|
}; |