mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
"use strict";
|
|
|
|
module.exports = function () {
|
|
var trunc = Math.trunc;
|
|
if (typeof trunc !== "function") return false;
|
|
return trunc(13.67) === 13 && trunc(-13.67) === -13;
|
|
};
|