最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

html - Javascript: Is there an equivalent to caniuse.com for HTML5 APIsECMAScript5ECMAScript6 in the various browsers? - Stack O

programmeradmin3浏览0评论

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

caniuse does have some javascript coverage, but pages like 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]);
});

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

caniuse. does have some javascript coverage, but pages like http://caniuse./#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]);
});
Share Improve this question asked May 30, 2012 at 4:50 BrianFreudBrianFreud 7,4846 gold badges37 silver badges51 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 10

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

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论