UNPKG

@utahdts/utah-design-system

Version:
9 lines (8 loc) 165 B
/** * returns an 's' if the number is plural * @param {number} value * @returns {string} */ export function trailingS(value) { return value >= 2 ? 's' : ''; }