It has come to my attention that IE nor Safari support slicing typed arrays. Also, IE10 does not support the typed array constructor that allows taking a view of a typed array. This suggests that the best plan of action is to implement a slice polyfill that just copies data when slice is unavailable.
It has come to my attention that IE nor Safari support slicing typed arrays. Also, IE10 does not support the typed array constructor that allows taking a view of a typed array. This suggests that the best plan of action is to implement a
slice
polyfill that just copies data whenslice
is unavailable.