Files
30-seconds-of-code/node_modules/underscore.string/splice.js
2019-08-20 15:52:05 +02:00

8 lines
181 B
JavaScript

var chars = require('./chars');
module.exports = function splice(str, i, howmany, substr) {
var arr = chars(str);
arr.splice(~~i, ~~howmany, substr);
return arr.join('');
};