locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
16 lines (15 loc) • 628 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ge = ge;
const _operator_ts_1 = require("../_helpers/_operator.js");
function ge(a, b) {
// discuss at: https://locutus.io/python/operator/ge/
// parity verified: Python 3.12
// original by: Kevin van Zonneveld (https://kvz.io)
// note 1: Returns whether the left value is greater than or equal to the right value.
// example 1: ge(3, 2)
// returns 1: true
// example 2: ge('b', 'c')
// returns 2: false
return (0, _operator_ts_1.pythonCompare)(a, b, 'ge') >= 0;
}