Sha256: 672b9fd54d39fe2c77ac9302cc604e60dac41d722936729783bc0282c3ac1e68

Contents?: true

Size: 488 Bytes

Versions: 9

Compression:

Stored size: 488 Bytes

Contents

'use strict';
var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
var $find = require('../internals/array-iteration').find;

var aTypedArray = ArrayBufferViewCore.aTypedArray;

// `%TypedArray%.prototype.find` method
// https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.find
ArrayBufferViewCore.exportProto('find', function find(predicate /* , thisArg */) {
  return $find(aTypedArray(this), predicate, arguments.length > 1 ? arguments[1] : undefined);
});

Version data entries

9 entries across 9 versions & 3 rubygems

Version Path
disco_app-0.18.0 test/dummy/node_modules/core-js/modules/es.typed-array.find.js
disco_app-0.18.2 test/dummy/node_modules/core-js/modules/es.typed-array.find.js
jester-data-8.0.0 node_modules/core-js/modules/es.typed-array.find.js
ezii-os-5.2.1 node_modules/core-js/modules/es.typed-array.find.js
ezii-os-2.0.1 node_modules/core-js/modules/es.typed-array.find.js
ezii-os-1.1.0 node_modules/core-js/modules/es.typed-array.find.js
ezii-os-1.0.0 node_modules/core-js/modules/es.typed-array.find.js
ezii-os-0.0.0.1.0 node_modules/core-js/modules/es.typed-array.find.js
ezii-os-0.0.0.0.1 node_modules/core-js/modules/es.typed-array.find.js