UNPKG

@cesium133/forgjs

Version:

forgJs is a javascript lightweight object validator.

8 lines (6 loc) 155 B
const { NUMBER } = require('../primitives'); const float = { ...NUMBER, type: val => Number(val) === val && val % 1 !== 0, }; module.exports = float;