mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2026-01-01 18:47:20 +01:00
8 lines
176 B
JavaScript
Vendored
8 lines
176 B
JavaScript
Vendored
"use strict";
|
|
|
|
module.exports = function () {
|
|
var trunc = Math.trunc;
|
|
if (typeof trunc !== "function") return false;
|
|
return trunc(13.67) === 13 && trunc(-13.67) === -13;
|
|
};
|