Add check for ArrayBuffer[Symbol.species] (#233)

This commit is contained in:
Brian Ng
2017-03-30 15:18:29 -05:00
committed by Henry Zhu
parent c4c9a7fc88
commit ae3e7cb4a9
14 changed files with 121 additions and 2 deletions

View File

@@ -25,11 +25,11 @@ const typedArrayMethods = [
"typed arrays / %TypedArray%.prototype.values",
"typed arrays / %TypedArray%.prototype.entries",
"typed arrays / %TypedArray%.prototype[Symbol.iterator]",
"typed arrays / %TypedArray%[Symbol.species]"
"typed arrays / %TypedArray%[Symbol.species]",
];
const es2015 = {
// "es6.typed/array-buffer": "typed arrays / ",
"es6.typed.array-buffer": "typed arrays / ArrayBuffer[Symbol.species]",
"es6.typed.data-view": "typed arrays / DataView",
"es6.typed.int8-array": {
features: ["typed arrays / Int8Array"].concat(typedArrayMethods)

View File

@@ -1,4 +1,14 @@
{
"es6.typed.array-buffer": {
"chrome": 51,
"edge": 13,
"firefox": 48,
"safari": 10,
"node": 6.5,
"ios": 10,
"opera": 38,
"electron": 1.2
},
"es6.typed.data-view": {
"chrome": 5,
"opera": 12,