mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 02:42:48 +00:00
9 lines
185 B
JavaScript
9 lines
185 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);
|
|
};
|