UNPKG

reddit-memes-api

Version:
7 lines 244 B
const ifEmpty = (value) => ( value === undefined || value === null || (typeof value === 'object' && Object.keys(value).length === 0) || (typeof value === 'string' && value.trim().length === 0) ) module.exports = ifEmpty;