Skip to content

luiselizondo/lodash-exists

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lodash Exists

Build Status

Extends lodash to check if a value exists

Example

var _ = require('lodash');
require('lodash-exists')

_.exists('') // false
_.exists(null) // false
_.exists(undefined) // false
_.exists(true) // true
_.exists(false) // true
_.exists('Some string') // true
_.exists(3) // true

About

Extends lodash to include a method that checks if a value exists

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published