diff options
author | Kaleb Davis <kalebdavisgithub@gmail.com> | 2015-10-06 21:31:07 -0400 |
---|---|---|
committer | Kaleb Davis <kalebdavisgithub@gmail.com> | 2015-10-06 21:31:07 -0400 |
commit | 7afadb01811e1fb97a928a0e2d8b1a3b7a3a42f6 (patch) | |
tree | 3f894cb63dae3cbea05b6b8768935f07726bcf1f /coffeescript.html.markdown | |
parent | 6ac7368b3b8e3ce1ee6c50c9f088553e7cbc6d1a (diff) |
Fix indentation to make compiled JS more readable
Diffstat (limited to 'coffeescript.html.markdown')
-rw-r--r-- | coffeescript.html.markdown | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/coffeescript.html.markdown b/coffeescript.html.markdown index 4c080bc6..a198f40d 100644 --- a/coffeescript.html.markdown +++ b/coffeescript.html.markdown @@ -54,19 +54,19 @@ math = square: square cube: (x) -> x * square x #=> var math = { -# "root": Math.sqrt, -# "square": square, -# "cube": function(x) { return x * square(x); } -#} +# "root": Math.sqrt, +# "square": square, +# "cube": function(x) { return x * square(x); } +# }; # Splats: race = (winner, runners...) -> print winner, runners #=>race = function() { -# var runners, winner; -# winner = arguments[0], runners = 2 <= arguments.length ? __slice.call(arguments, 1) : []; -# return print(winner, runners); -#}; +# var runners, winner; +# winner = arguments[0], runners = 2 <= arguments.length ? __slice.call(arguments, 1) : []; +# return print(winner, runners); +# }; # Existence: alert "I knew it!" if elvis? @@ -75,14 +75,14 @@ alert "I knew it!" if elvis? # Array comprehensions: cubes = (math.cube num for num in list) #=>cubes = (function() { -# var _i, _len, _results; -# _results = []; +# var _i, _len, _results; +# _results = []; # for (_i = 0, _len = list.length; _i < _len; _i++) { -# num = list[_i]; -# _results.push(math.cube(num)); -# } -# return _results; -# })(); +# num = list[_i]; +# _results.push(math.cube(num)); +# } +# return _results; +# })(); foods = ['broccoli', 'spinach', 'chocolate'] eat food for food in foods when food isnt 'chocolate' |