Files
JiboViteDocs/node_modules/is-what/dist/isNegativeInteger.js

6 lines
206 B
JavaScript
Raw Normal View History

2026-05-03 12:12:57 -04:00
import { isInteger } from './isInteger.js';
/** Returns whether the payload is a negative Integer (but not 0) */
export function isNegativeInteger(payload) {
return isInteger(payload) && payload < 0;
}