feige
2024-11-28 7fc578dc2032fac935267e92208f7f11384e3800
1
2
3
4
5
6
7
8
'use strict';
var charAt = require('../internals/string-multibyte').charAt;
 
// `AdvanceStringIndex` abstract operation
// https://tc39.es/ecma262/#sec-advancestringindex
module.exports = function (S, index, unicode) {
  return index + (unicode ? charAt(S, index).length : 1);
};