mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 17:35:16 +00:00
9 lines
183 B
JavaScript
9 lines
183 B
JavaScript
// Credit: http://www.2ality.com/2014/05/is-integer.html
|
|
|
|
"use strict";
|
|
|
|
module.exports = function (value) {
|
|
if (typeof value !== "number") return false;
|
|
return value % 1 === 0;
|
|
};
|