Sha256: 9ddbb613a3ff05061727aa19a62edf39445107231d7c54236986d3129f4b31e1

Contents?: true

Size: 1.4 KB

Versions: 29

Compression:

Stored size: 1.4 KB

Contents

'use strict';
var $ = require('../internals/export');
var createIteratorConstructor = require('../internals/create-iterator-constructor');
var requireObjectCoercible = require('../internals/require-object-coercible');
var InternalStateModule = require('../internals/internal-state');
var StringMultibyteModule = require('../internals/string-multibyte');

var codeAt = StringMultibyteModule.codeAt;
var charAt = StringMultibyteModule.charAt;
var STRING_ITERATOR = 'String Iterator';
var setInternalState = InternalStateModule.set;
var getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);

// TODO: unify with String#@@iterator
var $StringIterator = createIteratorConstructor(function StringIterator(string) {
  setInternalState(this, {
    type: STRING_ITERATOR,
    string: string,
    index: 0
  });
}, 'String', function next() {
  var state = getInternalState(this);
  var string = state.string;
  var index = state.index;
  var point;
  if (index >= string.length) return { value: undefined, done: true };
  point = charAt(string, index);
  state.index += point.length;
  return { value: { codePoint: codeAt(point, 0), position: index }, done: false };
});

// `String.prototype.codePoints` method
// https://github.com/tc39/proposal-string-prototype-codepoints
$({ target: 'String', proto: true }, {
  codePoints: function codePoints() {
    return new $StringIterator(String(requireObjectCoercible(this)));
  }
});

Version data entries

29 entries across 28 versions & 9 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/core-js/modules/esnext.string.code-points.js
disco_app-0.18.0 test/dummy/node_modules/core-js/modules/esnext.string.code-points.js
disco_app-0.18.2 test/dummy/node_modules/core-js/modules/esnext.string.code-points.js
tang-0.2.1 spec/tang_app/node_modules/core-js/modules/esnext.string.code-points.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/core-js/modules/esnext.string.code-points.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/core-js/modules/esnext.string.code-points.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/core-js/modules/esnext.string.code-points.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/core-js/modules/esnext.string.code-points.js
tang-0.2.0 spec/tang_app/node_modules/core-js/modules/esnext.string.code-points.js
tang-0.1.0 spec/tang_app/node_modules/core-js/modules/esnext.string.code-points.js
tang-0.0.9 spec/tang_app/node_modules/core-js/modules/esnext.string.code-points.js
enju_library-0.3.8 spec/dummy/node_modules/core-js/modules/esnext.string.code-points.js
condenser-0.3 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.string.code-points.js
condenser-0.2 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.string.code-points.js
condenser-0.1 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.string.code-points.js
condenser-0.0.12 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.string.code-points.js
condenser-0.0.11 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.string.code-points.js
condenser-0.0.10 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.string.code-points.js
condenser-0.0.9 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.string.code-points.js
condenser-0.0.8 lib/condenser/processors/node_modules/core-js-pure/modules/esnext.string.code-points.js