@antv/layout
Version:
graph layout algorithm
27 lines (22 loc) • 584 B
JavaScript
/**
* The base implementation of `_.gt` which doesn't coerce arguments.
*
* @private
* @param {*} value The value to compare.
* @param {*} other The other value to compare.
* @returns {boolean} Returns `true` if `value` is greater than `other`,
* else `false`.
*/
var _baseGt;
var hasRequired_baseGt;
function require_baseGt () {
if (hasRequired_baseGt) return _baseGt;
hasRequired_baseGt = 1;
function baseGt(value, other) {
return value > other;
}
_baseGt = baseGt;
return _baseGt;
}
export { require_baseGt as __require };
//# sourceMappingURL=_baseGt.js.map