Sha256: 24a3890837a61e721f6cff6f758efeb3e0a2c8c772bc658b619bb4ecd0373a2d
Contents?: true
Size: 197 Bytes
Versions: 396
Compression:
Stored size: 197 Bytes
Contents
module.exports = class Hexadecimal constructor: (hex) -> @hex = hex toDecimal: -> for char in this.hex.split("") return 0 if /[^0-9a-fA-F]/.exec(char) parseInt(this.hex,16)
Version data entries
396 entries across 396 versions & 1 rubygems