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

optimal

Package Overview
Dependencies
Maintainers
1
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

optimal

Options object builder and validator.

  • 0.6.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
43K
decreased by-6.05%
Maintainers
1
Weekly downloads
 
Created
Source

Optimal v0.3.0

Build Status

Options object builder and validator.

Usage

Pass a plain object and a factory function to Options. The factory defines a blueprint for every property and value within the options object.

The plain object is then validated, built, and returned.

const baseOptions = {
  bool: false,
  number: 10,
  object: {
    foo: 'b',
  },
};

const options = new Options(baseOptions, (o) => ({
  bool: o.bool(true),
  string: o.string('foo'),
  number: o.number(5).between(0, 10),
  func: o.func(),
  object: {
    foo: o.string('a').oneOf(['a', 'b', 'c']),
  },
}));

/*
{
  bool: false,
  string: 'foo',
  number: 10,
  func: null,
  object: {
    foo: 'b',
  }
}
*/

const {
  string, // foo
  number, // 10
} = options;

Keywords

FAQs

Package last updated on 08 Jul 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