Socket
Socket
Sign inDemoInstall

is-answer

Package Overview
Dependencies
8
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    is-answer

Returns true if an answer to a prompt is not undefined, null, an empty object, empty array, or a string with zero length.


Version published
Maintainers
1
Install size
63.5 kB
Created

Readme

Source

is-answer NPM version Build Status

Returns true if an answer to a prompt is not undefined, null, an empty object, empty array, or a string with zero length.

Install

Install with npm:

$ npm install is-answer --save

Usage

var isAnswer = require('is-answer');

True

if the value is a boolean

isAnswer(true);
isAnswer(false);
//=> true

if the value is a string

isAnswer('foo');
//=> true

if the value is a number

isAnswer(0);
isAnswer(1);
//=> true

if the value is an object with values

isAnswer({a: 'b'});
isAnswer({a: true});
isAnswer({a: false});
isAnswer({a: 0});
//=> true

if the value is an array with values

isAnswer(['foo']);
isAnswer([true]);
isAnswer([false]);
isAnswer([0]);
//=> true

False

returns false if the value is an empty string

isAnswer('');
//=> false

returns false if the value is an empty object

isAnswer({});
isAnswer({a: {}});
isAnswer({a: undefined});
isAnswer({a: ''});
isAnswer({a: null});
isAnswer({a: {b: {}}});
//=> false

returns false if the value is an empty array

isAnswer([]);
isAnswer([null]);
isAnswer([undefined]);
isAnswer([{}]);
isAnswer(['']);
//=> false

Contributing

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

Building docs

Generate readme and API documentation with verb:

$ npm install verb && npm run docs

Or, if verb is installed globally:

$ verb

Running tests

Install dev dependencies:

$ npm install -d && npm test

Author

Jon Schlinkert

License

Copyright © 2016 Jon Schlinkert Released under the MIT license.


This file was generated by verb, v0.9.0, on March 11, 2016.

Keywords

FAQs

Last updated on 31 Dec 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc