Skip to main content
Module

x/lodash_es/mod.ts>isEmpty

lodash for deno use
Latest
function isEmpty
import { isEmpty } from "https://deno.land/x/lodash_es@v0.0.2/mod.ts";

Checks if value is an empty object, collection, map, or set.

Objects are considered empty if they have no own enumerable string keyed properties.

Array-like values such as arguments objects, arrays, buffers, strings, or jQuery-like collections are considered empty if they have a length of 0. Similarly, maps and sets are considered empty if they have a size of 0.

Examples

_.isEmpty(null); // => true

_.isEmpty(true); // => true

_.isEmpty(1); // => true

_.isEmpty([1, 2, 3]); // => false

_.isEmpty({ 'a': 1 }); // => false

Parameters

value

The value to check.