UNPKG

@prelude/cmp

Version:

Cmp module.

5 lines 255 B
import number from './number.js'; /** @returns `null` comparision function; `null` value is considered lower than non-`null`. */ const null_ = (a, b) => number(a === null ? 0 : 1, b === null ? 0 : 1); export default null_; //# sourceMappingURL=null.js.map