mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 23:21:04 +00:00
38 lines
911 B
JavaScript
38 lines
911 B
JavaScript
/*!
|
|
{
|
|
"name": "ES6 Math",
|
|
"property": "es6math",
|
|
"notes": [{
|
|
"name": "unofficial ECMAScript 6 draft specification",
|
|
"href": "https://web.archive.org/web/20180825202128/https://tc39.github.io/ecma262/"
|
|
}],
|
|
"polyfills": ["es6shim"],
|
|
"authors": ["Ron Waldon (@jokeyrhyme)"],
|
|
"warnings": ["ECMAScript 6 is still a only a draft, so this detect may not match the final specification or implementations."],
|
|
"tags": ["es6"]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Check if browser implements ECMAScript 6 Math per specification.
|
|
*/
|
|
define(['Modernizr'], function(Modernizr) {
|
|
Modernizr.addTest('es6math', !!(Math &&
|
|
Math.clz32 &&
|
|
Math.cbrt &&
|
|
Math.imul &&
|
|
Math.sign &&
|
|
Math.log10 &&
|
|
Math.log2 &&
|
|
Math.log1p &&
|
|
Math.expm1 &&
|
|
Math.cosh &&
|
|
Math.sinh &&
|
|
Math.tanh &&
|
|
Math.acosh &&
|
|
Math.asinh &&
|
|
Math.atanh &&
|
|
Math.hypot &&
|
|
Math.trunc &&
|
|
Math.fround));
|
|
});
|