empty

v1.0.0arrow_drop_down
v1.0.0
v0.0.1
STATUS
Passing
DOWNLOADS
11,978
LICENSE
MIT
VISIBILITY
Public
PUBLISHED
7 years ago
SIZE
545 B
determines whether `obj` reference is empty (empty array, empty object and/or falsy values)
2 contributors
Install empty as a package?
Copied
npm i @bit/bit.utils.validation.empty
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
No preview available
modifieddraft
chevron_left
chevron_right
empty (
name:*
) : boolean

determines whether obj reference is empty (empty array, empty object and/or falsy values)

Example
empty([]) // => true
 empty({}) // => true
 empty(1) // => false
 empty('') // => false
 empty('foo') // => false
 empty(false) // => true
Argument
name: *
Returns
boolean

Test Summary

#empty() should return true as an empty array was passed

Pass

#empty() should return true as an empty object was passed

Pass

#empty() should return true as an empty string was passed

Pass

#empty() should return false as string foo was passed

Pass

#empty() should return false as [1] was passed

Pass

#empty() should return false as { a: 1 } was passed

Pass
Help and resources