Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 323 Bytes

File metadata and controls

20 lines (15 loc) · 323 Bytes

@codewell/is-empty

Installation

npm install @codewell/is-empty

Basic usage

import isEmpty from '@codewell/is-empty';

isEmpty([]); // => true
isEmpty(''); // => true
isEmpty({}); // => true

isEmpty(['foo']); // => false
isEmpty('foo'); // => false
isEmpty({ foo: 'bar' }); // => false