mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-22 02:58:36 +00:00
7 lines
196 B
JavaScript
Vendored
7 lines
196 B
JavaScript
Vendored
"use strict";
|
|
|
|
module.exports = function () {
|
|
var sinh = Math.sinh;
|
|
if (typeof sinh !== "function") return false;
|
|
return sinh(1) === 1.1752011936438014 && sinh(Number.MIN_VALUE) === 5e-324;
|
|
};
|