Como dividir uma corda em pedaços de nodejs
function chunkString(str, length) {
return str.match(new RegExp('.{1,' + length + '}', 'g'));
}
Concerned Cottonmouth
function chunkString(str, length) {
return str.match(new RegExp('.{1,' + length + '}', 'g'));
}