string-splice
v1.3.0
Published
simple function to provide array-like splice functionality to strings
Downloads
56,410
Readme
splice(str, index, count, add)
#Example
var splice = require('string-splice') ;
var exampleString = 'abcdefg'
splice(exampleString, 1, 2, 'ZZZ');
//'aZZZdefg'
#Attributions: Taken from the answer to this stack overflow question: http://stackoverflow.com/questions/20817618/is-there-a-splice-method-for-strings