Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 "use strict"; | |
2 | |
3 GLOBAL.atob = data => new Buffer(data, "base64").toString("binary"); | |
4 GLOBAL.btoa = data => new Buffer(data, "binary").toString("base64"); | |
5 GLOBAL.navigator = {}; | |
6 | |
7 require("node-babel")(); | |
8 | |
9 require("./node_modules/.bin/nodeunit"); | |
OLD | NEW |