aboutsummaryrefslogtreecommitdiff
path: root/node_modules/text-table/example/table.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/text-table/example/table.js')
-rw-r--r--node_modules/text-table/example/table.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/node_modules/text-table/example/table.js b/node_modules/text-table/example/table.js
new file mode 100644
index 000000000..903ea4c41
--- /dev/null
+++ b/node_modules/text-table/example/table.js
@@ -0,0 +1,6 @@
+var table = require('../');
+var t = table([
+ [ 'master', '0123456789abcdef' ],
+ [ 'staging', 'fedcba9876543210' ]
+]);
+console.log(t);