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:
authorisaacs <i@izs.me>2012-03-28 07:23:22 +0400
committerisaacs <i@izs.me>2012-03-28 07:23:22 +0400
commitd2dc6b1b6b595b0625d5eb9d1a30e3d9d29beec0 (patch)
tree552a6fd424f1fbcbc959be20bf454d5b1d6df02f
parent27663a4dd2645323149123a74cb0507b80fdc188 (diff)
how'd that get in there.
-rw-r--r--node_modules/archy/examples/beep.js24
-rw-r--r--node_modules/archy/examples/multi_line.js25
2 files changed, 0 insertions, 49 deletions
diff --git a/node_modules/archy/examples/beep.js b/node_modules/archy/examples/beep.js
deleted file mode 100644
index 9c0704797..000000000
--- a/node_modules/archy/examples/beep.js
+++ /dev/null
@@ -1,24 +0,0 @@
-var archy = require('../');
-var s = archy({
- label : 'beep',
- nodes : [
- 'ity',
- {
- label : 'boop',
- nodes : [
- {
- label : 'o_O',
- nodes : [
- {
- label : 'oh',
- nodes : [ 'hello', 'puny' ]
- },
- 'human'
- ]
- },
- 'party\ntime!'
- ]
- }
- ]
-});
-console.log(s);
diff --git a/node_modules/archy/examples/multi_line.js b/node_modules/archy/examples/multi_line.js
deleted file mode 100644
index 8afdfada9..000000000
--- a/node_modules/archy/examples/multi_line.js
+++ /dev/null
@@ -1,25 +0,0 @@
-var archy = require('../');
-
-var s = archy({
- label : 'beep\none\ntwo',
- nodes : [
- 'ity',
- {
- label : 'boop',
- nodes : [
- {
- label : 'o_O\nwheee',
- nodes : [
- {
- label : 'oh',
- nodes : [ 'hello', 'puny\nmeat' ]
- },
- 'creature'
- ]
- },
- 'party\ntime!'
- ]
- }
- ]
-});
-console.log(s);