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

is-enabled

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

is-enabled

Using key paths that may contain "falsey" patterns, check if a property on an object is enabled.

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

is-enabled NPM version Build Status

Using key paths that may contain "falsey" patterns, check if a property on an object is enabled.

Install

Install with npm:

$ npm i is-enabled --save

Usage

Require in the is-enabled function and setup an object to use.

var isEnabled = require('is-enabled');
var options = {};

Check if the verbose property is enabled. Returns true when verbose is true.

options.verbose = true;
console.log(isEnabled(options, 'verbose'));
//=> true

Returns false when verbose is false.

options.verbose = false;
console.log(isEnabled(options, 'verbose'));
//=> false

Use "falsey" patterns in the key path to toggle the results.

Returns false when verbose is true.

options.verbose = true;
console.log(isEnabled(options, 'not.verbose'));
//=> false

Returns true when verbose is false.

options.verbose = false;
console.log(isEnabled(options, 'not.verbose'));
//=> true

falsey: Returns true if value is falsey. Works for strings, arrays and arguments objects with a… more | homepage

Generate docs

Generate readme and API documentation with [verb][]:

$ npm i -d && npm run docs

Or, if [verb][] is installed globally:

$ verb

Running tests

Install dev dependencies:

$ npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Author

Brian Woodward

License

Copyright © 2016 Brian Woodward Released under the MIT license.


This file was generated by verb, v0.1.0, on February 20, 2016.

FAQs

Package last updated on 20 Feb 2016

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