Sha256: a5aa04a2b0d79abeab560346a69f8b4fd87beec2fa684bffa766a23faa76fd32
Contents?: true
Size: 277 Bytes
Versions: 69
Compression:
Stored size: 277 Bytes
Contents
define(function(){ /** * Count number of full steps. */ function countSteps(val, step, overflow){ val = Math.floor(val / step); if (overflow) { return val % overflow; } return val; } return countSteps; });
Version data entries
69 entries across 69 versions & 2 rubygems