mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 13:41:23 +00:00
3 lines
97 B
JavaScript
Vendored
3 lines
97 B
JavaScript
Vendored
export default function isNullish (val) {
|
|
return [null, undefined, false].indexOf(val) !== -1
|
|
} |