%PDF- %PDF-
Direktori : /var/www/projetos/stb.ind.br/wp-content/themes/stb/node_modules/underscore.string/ |
Current File : /var/www/projetos/stb.ind.br/wp-content/themes/stb/node_modules/underscore.string/replaceAll.js |
var makeString = require('./helper/makeString'); module.exports = function replaceAll(str, find, replace, ignorecase) { var flags = (ignorecase === true)?'gi':'g'; var reg = new RegExp(find, flags); return makeString(str).replace(reg, replace); };