瑞宏网开票接口示例程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

t_base64x.js 254B

12345678910
  1. var assert = require('assert');
  2. var rs = require('../lib/jsrsasign.js');
  3. describe("base64x", function() {
  4. describe("hextorstr", function() {
  5. it('should return aaa', function() {
  6. assert.equal("aaa", rs.hextorstr("616161"));
  7. });
  8. });
  9. });