svcorelib
Version:
Core library used in the projects of Sv443 and the Sv443 Network. Contains tons of miscellaneous QoL features.
11 lines (9 loc) • 402 B
JavaScript
function isEmpty(input)
{
return (
(input === undefined || input === null || input === "") // other
|| (typeof input === "object" && Array.isArray(input) && input.length === 0) // arrays
|| (typeof input === "object" && !Array.isArray(input) && Object.keys(input) && Object.keys(input).length == 0) // objects
) ? true : false;
}
module.exports = isEmpty;