Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for Javascript Typed Arrays emulation library [closed]

I'm searching for a library that allows to emulate Typed Arrays in older JS engines.

At the very least, I would like to support IE8 (because of WinXP) and Android 2.x (because of fragmentation of Android devices which wont likely to get upgraded)

Yes, performance would be an issue, but, as it said, "make it work, then make it work fast.."

Single codebase is more important to me right now.

like image 877
wizzard0 Avatar asked Jul 01 '12 00:07

wizzard0


1 Answers

I believe this is what you're looking for: http://www.calormen.com/polyfill/typedarray.js

It's a polyfill made by Linden Research. I found it via this page. It's quite old, though (2010).

like image 94
Šime Vidas Avatar answered Sep 17 '22 12:09

Šime Vidas