Skip to content

Commit

Permalink
Removed Uint8ClampedArray workaround.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Feb 23, 2021
1 parent 3a8fc40 commit d401181
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ function arrayMax( array ) {
const TYPED_ARRAYS = {
Int8Array: Int8Array,
Uint8Array: Uint8Array,
// Workaround for IE11 pre KB2929437. See #11440
Uint8ClampedArray: typeof Uint8ClampedArray !== 'undefined' ? Uint8ClampedArray : Uint8Array,
Uint8ClampedArray: Uint8ClampedArray,
Int16Array: Int16Array,
Uint16Array: Uint16Array,
Int32Array: Int32Array,
Expand Down

0 comments on commit d401181

Please sign in to comment.