UNPKG

@botpoker/engine-holdem

Version:
12 lines (10 loc) 190 B
/** * @name formatPoint * @param {Object} point * @return {String} */ const formatPoint = (point) => { return `${point.name} of ${point.rank}`; }; module.exports = formatPoint;