source: Dev/trunk/node_modules/grunt-contrib-coffee/test/expected/default/concat.js

Last change on this file was 484, checked in by hendrikvanantwerpen, 11 years ago

Commit node_modules, to make checkouts and builds more deterministic.

File size: 332 bytes
Line 
1(function() {
2  var HelloWorld;
3
4  HelloWorld = (function() {
5    function HelloWorld() {}
6
7    HelloWorld.test = 'test';
8
9    return HelloWorld;
10
11  })();
12
13}).call(this);
14
15(function() {
16  console.log('hi');
17
18}).call(this);
19
20(function() {
21  var sayHello;
22
23  sayHello = function() {
24    return console.log('hi');
25  };
26
27}).call(this);
Note: See TracBrowser for help on using the repository browser.