Created
September 16, 2010 16:11
-
-
Save aheckmann/582683 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fn1( | |
{ key: 1 | |
, bar: 2 | |
, baz: 3 | |
} | |
) | |
fn2({ | |
foo: 1 | |
, bar: 2 | |
, baz: 3 | |
}) | |
fn3({ foo: 1 | |
, bar: 2 | |
, baz: 3 | |
}) | |
fn4({ foo: 1 | |
, bar: 2 | |
, baz: 3 | |
} | |
) | |
fn5( | |
{ key: 1 | |
, bar: 2 | |
, baz: 3 | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment