added missing node_modules

This commit is contained in:
Steve Gill
2016-01-20 17:07:33 -08:00
parent 4b74367e61
commit b8815c24fa
78 changed files with 15048 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
var parser = require("./");
var editor = parser.createEditor();
editor.set("ok", "hi");
editor.set("hi", "ok");
console.log(editor.toString());
editor.unset("hi");
console.log("===================");
console.log(editor.toString());
editor.unset("ok");
console.log("===================");
console.log(editor.toString());