Sha256: 728262013417bfa2fb2cadef6c172b31737ee29425883190cdc5a9226c34bf2a
Contents?: true
Size: 337 Bytes
Versions: 69
Compression:
Stored size: 337 Bytes
Contents
define(function () { /** * "Convert" value into a 32-bit unsigned integer. * IMPORTANT: Value will wrap at 2^32. */ function toUInt(val){ // we do not use lang/toNumber because of perf and also because it // doesn't break the functionality return val >>> 0; } return toUInt; });
Version data entries
69 entries across 69 versions & 2 rubygems