UNPKG

87 BJavaScriptView Raw
1/**
2 * Checks if x is null or undefined.
3 *
4 */
5export const isNil = (x) => x == null;