UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

13 lines (12 loc) 316 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.gt = void 0; function gt(value, other) { if (!(typeof value === "string" && typeof other === "string")) { value = +value; other = +other; } return value > other; } exports.gt = gt; exports.default = gt;