isNull.js 159 B

12345
  1. import { getType } from './getType.js';
  2. /** Returns whether the payload is null */
  3. export function isNull(payload) {
  4. return getType(payload) === 'Null';
  5. }