Comparing version 0.1.2 to 0.1.3
@@ -5,3 +5,3 @@ { | ||
"description": "Include non module javascript file as module", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"homepage": "http://github.com/shimondoodkin/jsinc", | ||
@@ -17,5 +17,3 @@ "repository": { | ||
"devDependencies": {}, | ||
"scripts": { | ||
"test": "test.js" | ||
} | ||
"scripts": {} | ||
} |
@@ -49,1 +49,9 @@ if(!('Array' in window)) console.log('no Array'); | ||
console.log(foo); | ||
console.log(window.foo); | ||
function windowfootest() | ||
{ | ||
window.foo2='setting a variable to the window is the same as setting a variable to this'; | ||
console.log(foo2); | ||
console.log(window.foo2); | ||
} |
8291
7
92