UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

21 lines (18 loc) 656 B
'use strict'; var DESCRIPTORS = require('../internals/descriptors'); var toObject = require('../internals/to-object'); var toLength = require('../internals/to-length'); var defineProperty = require('../internals/object-define-property').f; // `Array.prototype.lastIndex` getter // https://github.com/keithamus/proposal-array-last if (DESCRIPTORS && !('lastIndex' in [])) { defineProperty(Array.prototype, 'lastIndex', { configurable: true, get: function lastIndex() { var O = toObject(this); var len = toLength(O.length); return len == 0 ? 0 : len - 1; } }); require('../internals/add-to-unscopables')('lastIndex'); }