Sha256: 6a5902281e24aebf34dad7037803e3a6822e1d40e11106e250c8658b4ffa619b
Contents?: true
Size: 241 Bytes
Versions: 69
Compression:
Stored size: 241 Bytes
Contents
define(['./toInt', './nth'], function (toInt, nth) { /** * converts number into ordinal form (1st, 2nd, 3rd, 4th, ...) */ function ordinal(n){ n = toInt(n); return n + nth(n); } return ordinal; });
Version data entries
69 entries across 69 versions & 2 rubygems