@alidatorjs/is-less-than
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

is-less-than

Tiny function, compatible with Alidator.js, to validate if a value is less than other.

Install

You can use npm or yarn to install it.

$ npm install --save @alidatorjs/is-less-than

$ yarn add @alidatorjs/is-less-than

Then with a module bundler like rollup or webpack, use as you would anything else:

// using ES6 modules
import { isLessThan } from '@alidatorjs/is-less-than'

// using CommonJS modules
var { isLessThan } = require('@alidatorjs/is-less-than')

Usage

Is as easy as define an array with the validations.

import { validator } from '@alidatorjs/validator';
import { isLessThan } from '@alidatorjs/is-less-than';

const isValid = validator([
    isLessThan(0, 1),
    isLessThan(1, 2),
    isLessThan(2, 3),
]).every; // true

const errors = validator([
    [isLessThan(1, 0), () => 'Error 1'],
    [isLessThan(1, 2), () => 'Error 2'],
    [isLessThan(3, 2), () => 'Error 3'],
]).errors; // ['Error 1', 'Error 3']

License

MIT License

Package Sidebar

Install

npm i @alidatorjs/is-less-than

Weekly Downloads

0

Version

1.0.0

License

MIT

Unpacked Size

3.75 kB

Total Files

12

Last publish

Collaborators

  • gc-victor