Détail du package

oslllo-validator

oslllo127.5kMIT3.1.0

All in one Javascript validator

oslllo, validator, javascript, all-in-one-validator

readme

Cover Image

CI/Test npm Coverage Status

Documentation, Installation, and Usage Instructions

See the full installation and usage documentation HERE.

The Objective

Create an all in one Javascript validator for my application(s).

The Problem / Why

I wanted an all in one JS validator.

Usage Examples

Check if value is actual NaN

const is = require("oslllo-validator");

is.actualNaN(NaN); // => True
is.actualNaN(null); // => False
is.actualNaN(undefined); // => False

Check if UUID

const is = require("oslllo-validator");

is.UUID("A987FBC9-4BED-3078-CF07-9141BA07C9F3", 3); // => True
is.UUID("xxxA987FBC9-4BED-3078-CF07-9141BA07C9F3", 3); // => False

changelog

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

3.1.0 (2022-07-16)

Features

Bug Fixes

  • coverage: use node v16 (c00406c)
  • pkg: update package-lock.json (d0b3702)
  • scripts: replace node_modules with npx (90747cc)

Miscellaneous Chores

3.0.0 (2022-01-08)

Breaking Changes

  • Replaced JSDOM with domino (023ee4c)
  • Dropped support for Node V10 (f86a2d7)

Miscellaneous Chores

2.0.2 (2022-01-03)

Miscellaneous Chores

2.0.1 (2021-09-05)

Bug Fixes

2.0.0 (2021-05-06)

Breaking Changes

  • drop support for pre-packaged dist bundles.

Bug Fixes

  • package breaking when process.env.NODE_ENV env variable is set (d61d41a)
  • webpack browser build output location (9449d8f)

Miscellaneous Chores

[1.1.1] - 2021/4/1

Updated

  • Updated dependencies.

[1.1.0] - 2020/12/12

Added

  • Added support for validatorjs - v13.5.2.

Updated

  • Updated dependencies.

[1.0.1] - 2020/10/1

Changed

  • Updated documentation.
  • Added package.json keywords.

[1.0.0] - 2020/9/25

Changed

  • All Client-side dist/browser files have been moved to dist
  • Now returns an actual Object instead of a class instance.
  • main node files have been moved from dist/node to src. dist/node files are no more generated.

Added

  • Added node engine version requirements.
  • CDN links to docs.

[0.0.1] - 2020/8/18

Added

  • Everything, initial release.