UNPKG

@airgrid/edgekit

Version:

A privacy focused library for cookie-less audience creation.

14 lines 629 B
"use strict"; /* * Example usage: * const greaterThan10 = gt(10); * greaterThan10(11) === true; */ Object.defineProperty(exports, "__esModule", { value: true }); exports.le = exports.ge = exports.lt = exports.gt = exports.eq = void 0; exports.eq = function (a) { return function (b) { return a === b; }; }; exports.gt = function (a) { return function (b) { return b > a; }; }; exports.lt = function (a) { return function (b) { return b < a; }; }; exports.ge = function (a) { return function (b) { return b >= a; }; }; exports.le = function (a) { return function (b) { return b <= a; }; }; //# sourceMappingURL=matchers.js.map