We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35894ef commit 71d506dCopy full SHA for 71d506d
test/src/ZZ/from.js
@@ -8,6 +8,7 @@ test( 'ZZ.from()' , t => {
8
t.is( ZZ.from(undefined).toString() , '0' ) ;
9
10
t.is( ZZ.from('zz', 36).toString(36) , 'zz' ) ;
11
+ t.is( ZZ.from('3b', 16).toString(16) , '3b' ) ;
12
//t.is( ZZ.from('0x3b').toString(16) , '3b' ) ;
13
t.is( ZZ.from(ZZ.from(5).digits(3), 3).toString() , '5' ) ;
14
t.is( ZZ.from(Math.pow(7, 7)).toString() , '823543' ) ;
0 commit comments