15 lines
225 B
JavaScript
15 lines
225 B
JavaScript
(function () {
|
|
"use strict";
|
|
|
|
var atob = require('./index')
|
|
, expected = "SGVsbG8gV29ybGQ="
|
|
, result
|
|
;
|
|
|
|
if (expected !== atob("Hello World")) {
|
|
return;
|
|
}
|
|
|
|
console.log('[PASS] all tests pass');
|
|
}());
|