UNPKG

a-to-treejs

Version:

Convert array to tree fastly, and opposite.

4 lines 143 B
/** whether v is among (null, undefined, '') */ export default function isNothing (v) { return v === null || v === undefined || v === '' }