%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/splice.js |
var chars = require('./chars');
module.exports = function splice(str, i, howmany, substr) {
var arr = chars(str);
arr.splice(~~i, ~~howmany, substr);
return arr.join('');
};