Sha256: 56646eaec2d5b8df07489ba92fb0620a34fe9f371e89249abb64296bd37bbc9d
Contents?: true
Size: 238 Bytes
Versions: 69
Compression:
Stored size: 238 Bytes
Contents
define(function () { /** * Round number to a specific radix */ function round(value, radix){ radix = radix || 1; // default round 1 return Math.round(value / radix) * radix; } return round; });
Version data entries
69 entries across 69 versions & 2 rubygems