Further changes for the Use cases on the live site.
[yaffs-website] / node_modules / phantomjs-prebuilt / lib / phantom / examples / printenv.js
1 var system = require('system'),
2     env = system.env,
3     key;
4
5 for (key in env) {
6     if (env.hasOwnProperty(key)) {
7         console.log(key + '=' + env[key]);
8     }
9 }
10 phantom.exit();