mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 18:18:36 +00:00
7 lines
163 B
JavaScript
Vendored
7 lines
163 B
JavaScript
Vendored
"use strict";
|
|
|
|
module.exports = function () {
|
|
var sign = Math.sign;
|
|
if (typeof sign !== "function") return false;
|
|
return sign(10) === 1 && sign(-20) === -1;
|
|
};
|