mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 05:44:06 -06: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;
|
|
};
|