Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Javascript: Is there an equivalent to caniuse.com for HTML5 APIs/ECMAScript5/ECMAScript6 in the various browsers?

Is there an equivalent to caniuse.com for HTML5 APIs / ECMAScript5 / ECMAScript6 in the various browsers?

caniuse.com does have some javascript coverage, but pages like http://caniuse.com/#feat=filesystem don't really tell you anything other than yes/no/partially. Realistically, I'm looking for something like quirksmode crossed with caniuse, where I could look in detail at any API or method and see where it is currently implemented (and bug free). A site where, for example, I could look and see which versions of which browsers will currently work with this:

Object.keys(CONSTANTS.TEXT).forEach(function(key) {
    languages.push([key, CONSTANTS.TEXT[key].languageName]);
});
like image 525
BrianFreud Avatar asked May 30 '12 04:05

BrianFreud


People also ask

Do all browsers support ES6?

All the current browsers have full support to ES6. Well if you take a closer look you may find some “unsupported” or “partially supported” features but I bet you will never have chance to use those unsupported features.

Is HTML5 an API?

HTML5 File API aspect provides an API for representing file objects in web applications and programmatic selection and accessing their data. In addition, this specification defines objects to be used within threaded web applications for the synchronous reading of files.


1 Answers

Just found something like this in the references to a different question. ES5: http://kangax.github.com/es5-compat-table/ ES6: http://kangax.github.com/es5-compat-table/es6/ nonstandardized: http://kangax.github.com/es5-compat-table/non-standard/

like image 97
BrianFreud Avatar answered Sep 28 '22 03:09

BrianFreud