This repository has been archived by the owner on May 11, 2018. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #198 from yavorsky/typed-ie
Change built-in-targets according to Typed Array methods
- Loading branch information
Showing
10 changed files
with
260 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
import "babel-polyfill"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
import "core-js/modules/es6.typed.int8-array"; | ||
import "core-js/modules/es6.typed.uint8-array"; | ||
import "core-js/modules/es6.typed.uint8-clamped-array"; | ||
import "core-js/modules/es6.typed.int16-array"; | ||
import "core-js/modules/es6.typed.uint16-array"; | ||
import "core-js/modules/es6.typed.int32-array"; | ||
import "core-js/modules/es6.typed.uint32-array"; | ||
import "core-js/modules/es6.typed.float32-array"; | ||
import "core-js/modules/es6.typed.float64-array"; | ||
import "core-js/modules/es6.map"; | ||
import "core-js/modules/es6.set"; | ||
import "core-js/modules/es6.weak-map"; | ||
import "core-js/modules/es6.weak-set"; | ||
import "core-js/modules/es6.reflect.apply"; | ||
import "core-js/modules/es6.reflect.construct"; | ||
import "core-js/modules/es6.reflect.define-property"; | ||
import "core-js/modules/es6.reflect.delete-property"; | ||
import "core-js/modules/es6.reflect.get"; | ||
import "core-js/modules/es6.reflect.get-own-property-descriptor"; | ||
import "core-js/modules/es6.reflect.get-prototype-of"; | ||
import "core-js/modules/es6.reflect.has"; | ||
import "core-js/modules/es6.reflect.is-extensible"; | ||
import "core-js/modules/es6.reflect.own-keys"; | ||
import "core-js/modules/es6.reflect.prevent-extensions"; | ||
import "core-js/modules/es6.reflect.set"; | ||
import "core-js/modules/es6.reflect.set-prototype-of"; | ||
import "core-js/modules/es6.promise"; | ||
import "core-js/modules/es6.symbol"; | ||
import "core-js/modules/es6.object.assign"; | ||
import "core-js/modules/es6.object.is"; | ||
import "core-js/modules/es6.function.name"; | ||
import "core-js/modules/es6.string.raw"; | ||
import "core-js/modules/es6.string.from-code-point"; | ||
import "core-js/modules/es6.string.code-point-at"; | ||
import "core-js/modules/es6.string.repeat"; | ||
import "core-js/modules/es6.string.starts-with"; | ||
import "core-js/modules/es6.string.ends-with"; | ||
import "core-js/modules/es6.string.includes"; | ||
import "core-js/modules/es6.regexp.flags"; | ||
import "core-js/modules/es6.regexp.match"; | ||
import "core-js/modules/es6.regexp.replace"; | ||
import "core-js/modules/es6.regexp.split"; | ||
import "core-js/modules/es6.regexp.search"; | ||
import "core-js/modules/es6.array.from"; | ||
import "core-js/modules/es6.array.of"; | ||
import "core-js/modules/es6.array.copy-within"; | ||
import "core-js/modules/es6.array.find"; | ||
import "core-js/modules/es6.array.find-index"; | ||
import "core-js/modules/es6.array.fill"; | ||
import "core-js/modules/es6.array.iterator"; | ||
import "core-js/modules/es6.number.is-finite"; | ||
import "core-js/modules/es6.number.is-integer"; | ||
import "core-js/modules/es6.number.is-safe-integer"; | ||
import "core-js/modules/es6.number.is-nan"; | ||
import "core-js/modules/es6.number.epsilon"; | ||
import "core-js/modules/es6.number.min-safe-integer"; | ||
import "core-js/modules/es6.number.max-safe-integer"; | ||
import "core-js/modules/es6.math.acosh"; | ||
import "core-js/modules/es6.math.asinh"; | ||
import "core-js/modules/es6.math.atanh"; | ||
import "core-js/modules/es6.math.cbrt"; | ||
import "core-js/modules/es6.math.clz32"; | ||
import "core-js/modules/es6.math.cosh"; | ||
import "core-js/modules/es6.math.expm1"; | ||
import "core-js/modules/es6.math.fround"; | ||
import "core-js/modules/es6.math.hypot"; | ||
import "core-js/modules/es6.math.imul"; | ||
import "core-js/modules/es6.math.log1p"; | ||
import "core-js/modules/es6.math.log10"; | ||
import "core-js/modules/es6.math.log2"; | ||
import "core-js/modules/es6.math.sign"; | ||
import "core-js/modules/es6.math.sinh"; | ||
import "core-js/modules/es6.math.tanh"; | ||
import "core-js/modules/es6.math.trunc"; | ||
import "core-js/modules/es7.array.includes"; | ||
import "core-js/modules/es7.object.values"; | ||
import "core-js/modules/es7.object.entries"; | ||
import "core-js/modules/es7.object.get-own-property-descriptors"; | ||
import "core-js/modules/es7.string.pad-start"; | ||
import "core-js/modules/es7.string.pad-end"; | ||
import "core-js/modules/web.timers"; | ||
import "core-js/modules/web.immediate"; | ||
import "core-js/modules/web.dom.iterable"; | ||
import "regenerator-runtime/runtime"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"presets": [ | ||
["../../../../lib", { | ||
"targets": { | ||
"ie": 11 | ||
}, | ||
"modules": false, | ||
"useBuiltIns": true, | ||
"modules": false | ||
}] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.