aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/outputEncoding.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/outputEncoding.coffee')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/outputEncoding.coffee12
1 files changed, 0 insertions, 12 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/outputEncoding.coffee b/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/outputEncoding.coffee
deleted file mode 100644
index 9d212caf..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/outputEncoding.coffee
+++ /dev/null
@@ -1,12 +0,0 @@
-helloWorld = () -> console.log phantom.outputEncoding + ": こんにちは、世界!"
-
-console.log "Using default encoding..."
-helloWorld()
-
-console.log "\nUsing other encodings..."
-for enc in ["euc-jp", "sjis", "utf8", "System"]
- do (enc) ->
- phantom.outputEncoding = enc
- helloWorld()
-
-phantom.exit()