- Build: Update per latest Babel/Rollup

- npm: Update devDeps (no resulting license changes)
This commit is contained in:
Brett Zamir
2020-05-04 09:26:21 +08:00
parent 1a9b00a1f8
commit 381a0d9460
24 changed files with 456 additions and 168 deletions

View File

@@ -75,7 +75,7 @@
if (typeof o === "string") return _arrayLikeToArray(o, minLen);
var n = Object.prototype.toString.call(o).slice(8, -1);
if (n === "Object" && o.constructor) n = o.constructor.name;
if (n === "Map" || n === "Set") return Array.from(n);
if (n === "Map" || n === "Set") return Array.from(o);
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
}