79810095

Date: 2025-11-05 13:16:50
Score: 1
Natty:
Report link
/**
 * null, undefined, '', [] => true
 * 0, '0', true, false, NaN => false
 */
const isEmpty = (v) => ![v].join('');
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Anatoliy Litinskiy