UNPKG

core-js

Version:
11 lines (9 loc) 493 B
'use strict'; var arraySome = require('../internals/array-methods')(3); var ArrayBufferViewCore = require('../internals/array-buffer-view-core'); var aTypedArray = ArrayBufferViewCore.aTypedArray; // `%TypedArray%.prototype.some` method // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.some ArrayBufferViewCore.exportProto('some', function some(callbackfn /* , thisArg */) { return arraySome(aTypedArray(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined); });