summaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/printenv.coffee
blob: 80ec5f06430741c33ede4bb70ac47cc59349757b (plain)
1
2
3
4
5
6
system = require("system")
env = system.env
key = undefined
for key of env
  console.log key + "=" + env[key]  if env.hasOwnProperty(key)
phantom.exit()