Sha256: 1482ffad79d2bdbda6d90129d4068865dc4cf0b19f89175ebd0e4ce77b7886e3
Contents?: true
Size: 408 Bytes
Versions: 255
Compression:
Stored size: 408 Bytes
Contents
'use strict'; module.exports = Trinary; var BASE = 3; function Trinary(decimal) { this.digits = decimal.split('').reverse().map(Number); } Trinary.prototype.toDecimal = function() { var decimal = this.digits.reduce(this.accumulator, 0); return isNaN(decimal) ? 0 : decimal; }; Trinary.prototype.accumulator = function(decimal, digit, index) { return decimal += digit * Math.pow(BASE, index); };
Version data entries
255 entries across 255 versions & 1 rubygems