mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-05 06:17:36 +02:00
Merge pull request #1376 from kalebdavis/master
Fix indentation to make compiled JS more readable
This commit is contained in:
@@ -57,7 +57,7 @@ math =
|
||||
# "root": Math.sqrt,
|
||||
# "square": square,
|
||||
# "cube": function(x) { return x * square(x); }
|
||||
#}
|
||||
# };
|
||||
|
||||
# Splats:
|
||||
race = (winner, runners...) ->
|
||||
@@ -66,7 +66,7 @@ race = (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?
|
||||
|
Reference in New Issue
Block a user