UNPKG

rubico

Version:

[a]synchronous functional programming

12 lines (10 loc) 211 B
/** * @name greaterThan * * @synopsis * ```coffeescript [specscript] * greaterThan(left any, right any) -> boolean * ``` */ const greaterThan = (left, right) => left > right module.exports = greaterThan