Sha256: c30aee7891117c508d035e1717e7262bf650af13b6488599e8f4f7a2b0bf1061
Contents?: true
Size: 206 Bytes
Versions: 69
Compression:
Stored size: 206 Bytes
Contents
/** * Round value up with a custom radix. */ function ceil(val, step){ step = Math.abs(step || 1); return Math.ceil(val / step) * step; } module.exports = ceil;
Version data entries
69 entries across 69 versions & 2 rubygems