TypedArray methods
See original GitHub issueSafari for iOS does not support some TypedArray methods, like fill
, slice
.
For now typedArrays, like Float32Array
seem to be unpolyfilled.
Issue Analytics
- State:
- Created 7 years ago
- Comments:9 (2 by maintainers)
Top Results From Across the Web
TypedArray - JavaScript - MDN Web Docs
A TypedArray object describes an array-like view of an underlying binary data buffer. There is no global property named TypedArray, ...
Read more >TypedArray - Android Developers
Recycles the TypedArray, to be re-used by a later caller. After calling this function you must not ever touch the typed array again....
Read more >JavaScript Typed Array Reference - W3Schools
Typed arrays are array-like objects for storing binary data in memory. Typed Array Methods and Properties. Method / Property, Description. BYTES_PER_ELEMENT ...
Read more >JavaScript TypedArray - Javatpoint
The JavaScript TypedArray object illustrates an array like view of an underlying binary data buffer. There are many number of different global properties,...
Read more >20. Typed Arrays - Exploring JS
Static TypedArray methods; 20.4.7. TypedArray.prototype properties; 20.4.8. «ElementType»Array constructor; 20.4.9. Static «ElementType»Array properties ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
The tests for that repository are rather lacking. I also believe that not all those Array methods are implemented by all browsers meaning we will need to include polyfills for those as well. I think we would require those polyfills to be included first before being able to bring in your TypedArray polyfill set.
We do that already for TypedArray – https://github.com/Financial-Times/polyfill-library/blob/65a860cb2246f182acad92abb47aefdcbaafae54/polyfills/_TypedArray/config.toml#L1-L38