UNPKG

crdb

Version:
26 lines (19 loc) 449 B
'use strict'; exports.eq = function (value) { return other => other === value; }; exports.neq = function (value) { return other => other !== value; }; exports.lt = function (value) { return other => other < value; }; exports.lte = function (value) { return other => other <= value; }; exports.gt = function (value) { return other => other > value; }; exports.gte = function (value) { return other => other >= value; };