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