• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/APP-IPK/AiCloud-ipk/opt/etc/aicloud_UI/js/davclient.js/jsbase/
1load('string.js');
2load('number.js');
3
4function test_toBase() {
5    testing.assertEquals(number.toBase(5, 2), '101');
6    testing.assertEquals(number.toBase(5, 3), '12');
7    testing.assertEquals(number.toBase(255, 16), 'ff');
8    testing.assertEquals(number.toBase(0, 16), '0');
9    testing.assertEquals(number.toBase(438726438764873, 10), '438726438764873');
10};
11