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

chainable-check

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chainable-check

Creates a validator with the same requiredness behaviour as React.PropTypes validators

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
71
increased by222.73%
Maintainers
1
Weekly downloads
 
Created
Source

chainableCheck()

Creates a validation function with the same requiredness behaviour as React's React.PropTypes validators.

That is: the validaton function will not be called if the value it's supposed to validate isn't given (or is null), and the function will have an .isRequired property, which is a validation function which will return an Error if the value isn't given (or is null).

This is effectively just a standalone version of React's internal createChainableTypeChecker() function from ReactPropTypes.js.

Install

Node.js

chainableCheck() can be used on the server, or bundled for the client using an npm-compatible packaging system such as Browserify or webpack.

npm install --save chainable-check

Browser bundle

The browser bundle exposes a global chainableCheck variable.

You can find it in the /dist directory.

Usage

var chainableCheck = require('chainable-check')

var isEven = chainableCheck(function(props, propName, componentName, location) {
  var value = props[propName]
  if (isNaN(parseFloat(value)) || !isFinite(value) || parseFloat(value) % 2 !== 0) {
    return new Error(
      `Invalid ${locationName} \`${propName}\` supplied to ` +
      `\`${componentName}\`, expected an even number.`
    )
  }
})

var ExampleComponent = React.createClass({
  propTypes: {
    evenNumber: isEven
  , requiredEvenNumber: isEven.isRequired
  },

  // ...
})

MIT Licensed

FAQs

Package last updated on 13 Dec 2014

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