16 lines
251 B
JavaScript
Raw Normal View History

2011-09-08 22:18:42 -06:00
(function () {
"use strict";
var atob = require('./index')
2011-09-09 14:56:22 -06:00
, encoded = "SGVsbG8gV29ybGQ="
, unencoded = "Hello World"
2011-09-08 22:18:42 -06:00
, result
;
2011-09-09 14:56:22 -06:00
if (unencoded !== atob(encoded)) {
2011-09-08 22:18:42 -06:00
return;
}
console.log('[PASS] all tests pass');
}());