Last active
December 25, 2015 16:29
-
-
Save BartlomiejSkwira/7006180 to your computer and use it in GitHub Desktop.
object/hash is empty
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #check support | |
| Object.keys(obj).length === 0 | |
| #or | |
| if (Object.getOwnPropertyNames(obj).length > 0) return false; | |
| // Speed up calls to hasOwnProperty | |
| var hasOwnProperty = Object.prototype.hasOwnProperty; | |
| function is_empty(obj) { | |
| // null and undefined are empty | |
| if (obj == null) return true; | |
| // Assume if it has a length property with a non-zero value | |
| // that that property is correct. | |
| if (obj.length && obj.length > 0) return false; | |
| if (obj.length === 0) return true; | |
| for (var key in obj) { | |
| if (hasOwnProperty.call(obj, key)) return false; | |
| } | |
| // Doesn't handle toString and toValue enumeration bugs in IE < 9 | |
| return true; | |
| } | |
| // Examples | |
| console.log( | |
| is_empty(""), // True | |
| is_empty([]), // True | |
| is_empty({}), // True | |
| is_empty({length: 0, custom_property: []}), // True | |
| is_empty("Hello"), // False | |
| is_empty([1,2,3]), // False | |
| is_empty({test: 1}), // False | |
| is_empty({length: 3, custom_property: [1,2,3]}) // False | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment