All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.internals.advance-string-index.js Maven / Gradle / Ivy

The newest version!
'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);
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy