buf.js 142 B

1234
  1. process.nextTick(function () {
  2. t.equal(Buffer('abc').toString('base64'), 'YWJj');
  3. t.equal(Buffer([98,99,100]).toString(), 'bcd');
  4. });