.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / modules / esnext.typed-array.find-last.js
1 'use strict';
2 var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
3 var $findLast = require('../internals/array-iteration-from-last').findLast;
4
5 var aTypedArray = ArrayBufferViewCore.aTypedArray;
6 var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;
7
8 // `%TypedArray%.prototype.findLast` method
9 // https://github.com/tc39/proposal-array-find-from-last
10 exportTypedArrayMethod('findLast', function findLast(predicate /* , thisArg */) {
11   return $findLast(aTypedArray(this), predicate, arguments.length > 1 ? arguments[1] : undefined);
12 });