mirror of
https://github.com/devenperez/leetcode.git
synced 2026-06-13 14:57:08 +00:00
Time: 50 ms (68.94%), Space: 50.5 MB (14.65%) - LeetHub
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @param {Object|Array} obj
|
||||
* @return {boolean}
|
||||
*/
|
||||
var isEmpty = function(obj) {
|
||||
let s = JSON.stringify(obj)
|
||||
return s === "[]" || s === "{}" || s === ""
|
||||
};
|
||||
Reference in New Issue
Block a user