packages/remote-environment/src/es6/Array.js
/**
* Copyright 2017 Moshe Simantov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* eslint-disable prettier/prettier */
export default {
'Array': Array,
'Array.from': Array.from,
'Array.isArray': Array.isArray,
'Array.of': Array.of,
'Array.prototype': Array.prototype,
'Array.prototype.concat': Array.prototype.concat,
'Array.prototype.copyWithin': Array.prototype.copyWithin,
'Array.prototype.entries': Array.prototype.entries,
'Array.prototype.every': Array.prototype.every,
'Array.prototype.fill': Array.prototype.fill,
'Array.prototype.filter': Array.prototype.filter,
'Array.prototype.find': Array.prototype.find,
'Array.prototype.findIndex': Array.prototype.findIndex,
'Array.prototype.forEach': Array.prototype.forEach,
'Array.prototype.includes': Array.prototype.includes,
'Array.prototype.indexOf': Array.prototype.indexOf,
'Array.prototype.join': Array.prototype.join,
'Array.prototype.keys': Array.prototype.keys,
'Array.prototype.lastIndexOf': Array.prototype.lastIndexOf,
'Array.prototype.map': Array.prototype.map,
'Array.prototype.pop': Array.prototype.pop,
'Array.prototype.push': Array.prototype.push,
'Array.prototype.reduce': Array.prototype.reduce,
'Array.prototype.reduceRight': Array.prototype.reduceRight,
'Array.prototype.reverse': Array.prototype.reverse,
'Array.prototype.shift': Array.prototype.shift,
'Array.prototype.slice': Array.prototype.slice,
'Array.prototype.some': Array.prototype.some,
'Array.prototype.sort': Array.prototype.sort,
'Array.prototype.splice': Array.prototype.splice,
'Array.prototype.toLocaleString': Array.prototype.toLocaleString,
'Array.prototype.toString': Array.prototype.toString,
'Array.prototype.unshift': Array.prototype.unshift,
'Array.prototype[Symbol.iterator]': Array.prototype[Symbol.iterator],
'Array.prototype[Symbol.unscopables]': Array.prototype[Symbol.unscopables],
};