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

joi-fp

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

joi-fp

Provides a few wrappers around Joi's validate(), attempt() and assert() functions with their arguments re-ordered for easier currying / partial application

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

joi-fp

Provides a few wrappers around Joi's validate(), attempt() and assert() functions with their arguments re-ordered for easier currying / partial application

travis standard npm

Installation:

npm i joi-fp

What problem does this solve?

When using functions like joi.validate(), you will almost always have values for schema and/or options before you have the value being validated. This little library re-orders the arguments of joi.validate(), joi.attempt() and joi.assert() allowing you to pass the data you have initially, well, initially :) This library also has a few versions of these functions with fixed arities to make currying and partial application easier.

Quick Example

const _ = require('lodash')
const joi = require('joi-fp')(require('joi'))

// example with currying
const validateInput = _.curry(joi.validateFp3)({
  name: joi.string().required()
})({allowUnknown: true});

validateInput({name: 'Max', color: 'blue'})
// { error: null, value: { name: 'Max', color: 'blue' } }

// example with partial application
const validateInputAgain = _.partial(joi.validateFp, {
  name: joi.string().required()
}, {allowUnknown: true});

validateInputAgain({name: 'Max', color: 'blue'}, (err, value) => {
  console.log(err, value) // null { name: 'Max', color: 'blue' }
})

Functions

// fixed arity for easy currying / partial application
validateFp2 (schema, value)
validateFp3 (schema, optionsOrValue, optionsOrCallback)
validateFp (schema, options, value, callback)

attemptFp2 (schema, value)
attemptFp (schema, message, value)

assertFp2 (schema, value)
assertFp (schema, message, value)

Keywords

FAQs

Package last updated on 25 Mar 2017

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