mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-13 02:20:18 +00:00
9 lines
287 B
JavaScript
9 lines
287 B
JavaScript
'use strict';
|
|
var charAt = require('../internals/string-multibyte').charAt;
|
|
|
|
// `AdvanceStringIndex` abstract operation
|
|
// https://tc39.github.io/ecma262/#sec-advancestringindex
|
|
module.exports = function (S, index, unicode) {
|
|
return index + (unicode ? charAt(S, index).length : 1);
|
|
};
|