is-null.js 200 B

1234567
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var isNull = function (value) {
  4. return value === null;
  5. };
  6. exports.default = isNull;
  7. //# sourceMappingURL=is-null.js.map