mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-05-08 20:34:56 +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
|
|
} |