UNPKG

@prelude/cmp

Version:

Cmp module.

8 lines 181 B
/** @returns string comparision function. */ const string_ = (a, b) => a > b ? 1 : a < b ? -1 : 0; export default string_; //# sourceMappingURL=string.js.map