diff --git a/snippets/isEmpty.md b/snippets/isEmpty.md index 00f62420d..5dcd23708 100644 --- a/snippets/isEmpty.md +++ b/snippets/isEmpty.md @@ -9,8 +9,6 @@ const isEmpty = val => val == null || !(Object.keys(val) || val).length; ``` ```js -isEmpty(new Map()); // true -isEmpty(new Set()); // true isEmpty([]); // true isEmpty({}); // true isEmpty(''); // true