zulip/node_modules/handlebars/node_modules/uglify-js/tmp/hoist.js
Keegan McAllister 9b9d85eb36 Import Handlebars compiler and dependencies
Storing these in Git seems kind of weird, but seems to be [1] the done thing.
I have to say, it's a lot more appealing than getting 3 packages from npm
installed globally on every prod and dev machine -- we already have too much of
that with 'pip install'.

We can upgrade these in the future by running 'npm update' in the repo root
directory.

[1] http://www.futurealoof.com/posts/nodemodules-in-git.html

(imported from commit 60a9d6a7cafe742442d87e9f3abc25750e179780)
2013-04-02 14:43:58 -04:00

34 lines
663 B
JavaScript

function foo(arg1, arg2, arg3, arg4, arg5, arg6) {
var a = 5;
{
var d = 10, mak = 20, buz = 30;
var q = buz * 2;
}
if (moo) {
var a, b, c;
}
for (var arg1 = 0, d = 20; arg1 < 10; ++arg1)
console.log(arg3);
for (var i in mak) {}
for (j in d) {}
var d;
function test() {
};
//test();
(function moo(first, second){
console.log(first);
})(1);
(function moo(first, second){
console.log(moo());
})(1);
}
var foo;
var bar;