Sha256: ecbd5104b85a5d43a4a384d311118fede7d6df00abf8bc2edc5dee8424f1a6e1

Contents?: true

Size: 599 Bytes

Versions: 6

Compression:

Stored size: 599 Bytes

Contents

'use strict';
var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
var $lastIndexOf = require('../internals/array-last-index-of');

var aTypedArray = ArrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;

// `%TypedArray%.prototype.lastIndexOf` method
// https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.lastindexof
// eslint-disable-next-line no-unused-vars
exportTypedArrayMethod('lastIndexOf', function lastIndexOf(searchElement /* , fromIndex */) {
  return $lastIndexOf.apply(aTypedArray(this), arguments);
});

Version data entries

6 entries across 6 versions & 3 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/core-js/modules/es.typed-array.last-index-of.js
tang-0.2.1 spec/tang_app/node_modules/core-js/modules/es.typed-array.last-index-of.js
tang-0.2.0 spec/tang_app/node_modules/core-js/modules/es.typed-array.last-index-of.js
tang-0.1.0 spec/tang_app/node_modules/core-js/modules/es.typed-array.last-index-of.js
tang-0.0.9 spec/tang_app/node_modules/core-js/modules/es.typed-array.last-index-of.js
enju_library-0.3.8 spec/dummy/node_modules/core-js/modules/es.typed-array.last-index-of.js