Sha256: cb97b26f00c2fd0f29dc51d3a8c7778bf93f6bd07416200ad506543bba9e52a1
Contents?: true
Size: 905 Bytes
Versions: 1
Compression:
Stored size: 905 Bytes
Contents
/* eslint max-len: 0 */ "use strict"; require("core-js/shim"); require("babel-regenerator-runtime"); // Should be removed in the next major release: require("core-js/fn/regexp/escape"); if (global._babelPolyfill) { throw new Error("only one instance of babel-polyfill is allowed"); } global._babelPolyfill = true; var DEFINE_PROPERTY = "defineProperty"; function define(O, key, value) { O[key] || Object[DEFINE_PROPERTY](O, key, { writable: true, configurable: true, value: value }); } define(String.prototype, "padLeft", "".padStart); define(String.prototype, "padRight", "".padEnd); "pop,reverse,shift,keys,values,entries,indexOf,every,some,forEach,map,filter,find,findIndex,includes,join,slice,concat,push,splice,unshift,sort,lastIndexOf,reduce,reduceRight,copyWithin,fill".split(",").forEach(function (key) { [][key] && define(Array, key, Function.call.bind([][key])); });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
babel-schmooze-sprockets-0.1.0.alpha.3 | node_modules/babel-polyfill/lib/index.js |