polyfill UInt8Array.forEach for IE (#1981)

This commit is contained in:
Andrew Stanton-Nurse 2018-04-12 21:15:39 -07:00 committed by GitHub
parent 0053124ca4
commit 16c6a65bf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -20,5 +20,11 @@ if (!Uint8Array.prototype.slice) {
writable: true,
});
}
if (!Uint8Array.prototype.forEach) {
Object.defineProperty(Uint8Array.prototype, "forEach", {
value: Array.prototype.forEach,
writable: true,
});
}
export * from "./index";