LendAndRegret/node_modules/es-toolkit/dist/compat/util/toInteger.mjs
2026-05-02 17:27:43 +08:00

10 lines
219 B
JavaScript

import { toFinite } from './toFinite.mjs';
function toInteger(value) {
const finite = toFinite(value);
const remainder = finite % 1;
return remainder ? finite - remainder : finite;
}
export { toInteger };