{"version":3,"file":"nullish-D5CHwLhH.js","sources":["../src/functions/nullish.ts"],"sourcesContent":["\r\nexport type Nullish = null | undefined | ''\r\n\r\nexport const isNullish = (x: unknown): x is Nullish => x === '' || x === null || x === undefined;\r\n\r\nexport const isNullishOrWhitespace = (x: unknown): x is Nullish => x === null || x === undefined || (typeof(x) === 'string' && x.trim().length === 0);\r\n"],"names":["isNullish","x","isNullishOrWhitespace"],"mappings":"AAGO,MAAMA,IAAY,CAACC,MAA6BA,MAAM,MAAMA,MAAM,QAAQA,MAAM,QAE1EC,IAAwB,CAACD,MAA6BA,KAAM,QAA4B,OAAOA,KAAO,YAAYA,EAAE,KAAA,EAAO,WAAW;;;;;"}