Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rufflib-validate

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rufflib-validate

A RuffLIB library for succinctly validating JavaScript values.

  • 1.3.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

RuffLIB Validate

A RuffLIB library for succinctly validating JavaScript values.

▶  Version: 1.3.0
▶  Homepage: https://richplastow.com/rufflib-validate
▶  NPM: https://www.npmjs.com/package/rufflib-validate
▶  Repo: https://github.com/richplastow/rufflib-validate
▶  Tests: https://richplastow.com/rufflib-validate/run-browser-tests.html

Typical usage:

import Validate from 'rufflib-validate';

function sayOk(n, allowInvalid) {
    const v = new Validate('sayOk()', allowInvalid);
    if (!v.number(n, 'n', 100)) return v.err;
    return 'ok!';
}

sayOk(123); // ok!
sayOk(null); // sayOk(): 'n' is null not type 'number'
sayOk(3); // 'n' 3 is < 100
sayOk(3, true); // ok! (less safe, but faster)

Dev, Test and Build

Run the test suite in ‘src/’, while working on this library:
npm test --src
npm start --src --open --test

Build the minified and unminified bundles, using settings in rollup.config.js:
npm run build

Run the test suite in ‘docs/’, after a build:
npm test
npm start --open --test

Keywords

FAQs

Package last updated on 20 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc