UNPKG

react-kiwi-dropdown

Version:

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

16 lines (14 loc) 533 B
'use strict'; var isArray = require('../internals/is-array'); var nativeReverse = [].reverse; var test = [1, 2]; // `Array.prototype.reverse` method // https://tc39.github.io/ecma262/#sec-array.prototype.reverse // fix for Safari 12.0 bug // https://bugs.webkit.org/show_bug.cgi?id=188794 require('../internals/export')({ target: 'Array', proto: true, forced: String(test) === String(test.reverse()) }, { reverse: function reverse() { if (isArray(this)) this.length = this.length; return nativeReverse.call(this); } });