changeset 10:97f3b2242505

Removed unused js files.
author Atul Varma <varmaa@toolness.com>
date Thu, 10 Sep 2009 11:09:14 -0700
parents a88d1cc4db92
children 665f69f61716
files modules/baz.js modules/foo.js test.js
diffstat 3 files changed, 0 insertions(+), 19 deletions(-) [+]
line wrap: on
line diff
--- a/modules/baz.js	Thu Sep 10 10:50:11 2009 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-print("loading baz");
-
-exports.blop = function blop() {
-  print("foo.hello is " + require('./foo').hello);
-};
-
-print("baz loaded");
--- a/modules/foo.js	Thu Sep 10 10:50:11 2009 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,11 +0,0 @@
-print('loading foo');
-
-exports.bar = function bar() {
-  print('hay!');
-};
-
-exports.hello = 1;
-
-require('baz').blop();
-
-print('foo loaded.');
--- a/test.js	Thu Sep 10 10:50:11 2009 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-require("program");