Sha256: df424b198d51714e5d8c0df9db699cda4f7b0c777120a981cea5db7faeefaf02
Contents?: true
Size: 336 Bytes
Versions: 141
Compression:
Stored size: 336 Bytes
Contents
'use strict'; function Hexadecimal(hex) { this.hex = hex; this.toDecimal = function () { var hexCharacters = this.hex.split(''); for (var i = 0; i < hexCharacters.length; i++) { if (/[^0-9a-fA-F]/.exec(hexCharacters[i])) { return 0; } } return parseInt(this.hex, 16); }; } module.exports = Hexadecimal;
Version data entries
141 entries across 141 versions & 1 rubygems
Version | Path |
---|---|
trackler-2.2.1.38 | tracks/javascript/exercises/hexadecimal/example.js |