"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.gte = void 0;
function gte(value, other) {
if (!(typeof value === "string" && typeof other === "string")) {
value = +value;
other = +other;
}
return value >= other;
}
exports.gte = gte;
exports.default = gte;