Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Provides a few wrappers around Joi's validate(), attempt() and assert() functions with their arguments re-ordered for easier currying / partial application
Provides a few wrappers around Joi's validate()
, attempt()
and assert()
functions with their arguments
re-ordered for easier currying / partial application
npm i joi-fp
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.
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' }
})
// 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)
FAQs
Provides a few wrappers around Joi's validate(), attempt() and assert() functions with their arguments re-ordered for easier currying / partial application
The npm package joi-fp receives a total of 0 weekly downloads. As such, joi-fp popularity was classified as not popular.
We found that joi-fp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.