Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a JavaScript project that normalizes ECMAScript 5

Is there a JavaScript project anywhere that focuses on native normalization ECMAScript 5 in common browsers?

For reference, normalizing a table like this: http://kangax.github.com/es5-compat-table/

I know about wrappers that adds some ES5 functionality, and falls back on native implementations if they exist. But I havent seen a project that focuses solely on native implementation and normalization. Any thoughts?

like image 852
David Hellsing Avatar asked Oct 09 '22 20:10

David Hellsing


1 Answers

I'd pretty much recommend the ES5 Shim:

https://github.com/kriskowal/es5-shim

like image 90
jAndy Avatar answered Oct 27 '22 02:10

jAndy