Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/promzard/example/index.js')
-rw-r--r--node_modules/promzard/example/index.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/node_modules/promzard/example/index.js b/node_modules/promzard/example/index.js
deleted file mode 100644
index 435131f3a..000000000
--- a/node_modules/promzard/example/index.js
+++ /dev/null
@@ -1,11 +0,0 @@
-var pz = require('../promzard')
-
-var path = require('path')
-var file = path.resolve(__dirname, 'substack-input.js')
-var ctx = { basename: path.basename(path.dirname(file)) }
-
-pz(file, ctx, function (er, res) {
- if (er)
- throw er
- console.error(JSON.stringify(res, null, 2))
-})