6 lines
89 B
JavaScript
6 lines
89 B
JavaScript
function isInteger(value) {
|
|
return Number.isInteger(value);
|
|
}
|
|
|
|
export { isInteger };
|