source: trip-planner-front/node_modules/core-js/modules/esnext.typed-array.find-last.js@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 576 bytes
Line 
1'use strict';
2var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
3var $findLast = require('../internals/array-iteration-from-last').findLast;
4
5var aTypedArray = ArrayBufferViewCore.aTypedArray;
6var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;
7
8// `%TypedArray%.prototype.findLast` method
9// https://github.com/tc39/proposal-array-find-from-last
10exportTypedArrayMethod('findLast', function findLast(predicate /* , thisArg */) {
11 return $findLast(aTypedArray(this), predicate, arguments.length > 1 ? arguments[1] : undefined);
12});
Note: See TracBrowser for help on using the repository browser.