Created
August 21, 2008 17:04
-
-
Save dustym/6596 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
| var CurbedNetwork = $H({ | |
| 'curbed.com': $H({ | |
| title: 'curbed', | |
| locale: 'ny', | |
| name: 'Curbed', | |
| email: 'tips@curbed.com' | |
| }), | |
| 'eater.com': $H({ | |
| title: 'eater', | |
| locale: 'ny', | |
| name: 'Eater', | |
| email: 'tips@eater.com' | |
| }), | |
| 'racked.com': $H({ | |
| title: 'racked', | |
| locale: 'ny', | |
| name: 'Racked', | |
| email: 'tips@racked.com' | |
| }), | |
| 'la.curbed.com': $H({ | |
| title: 'curbed', | |
| locale: 'la', | |
| name: 'Curbed LA', | |
| email: 'la@curbed.com' | |
| }), | |
| 'la.eater.com': $H({ | |
| title: 'eater', | |
| locale: 'la', | |
| name: 'Eater LA', | |
| email: 'la@eater.com' | |
| }), | |
| 'la.racked.com': $H({ | |
| title: 'racked', | |
| locale: 'la', | |
| name: 'Racked LA', | |
| email: 'la@racked.com' | |
| }), | |
| 'sf.curbed.com': $H({ | |
| title: 'curbed', | |
| locale: 'sf', | |
| name: 'Curbed SF', | |
| email: 'sf@curbed.com' | |
| }), | |
| 'sf.eater.com': $H({ | |
| title: 'eater', | |
| locale: 'sf', | |
| name: 'Eater SF', | |
| email: 'sf@eater.com' | |
| }), | |
| 'gridskipper.com': $H({ | |
| title: 'gridskipper', | |
| locale: 'international', | |
| name: 'Gridskipper', | |
| email: 'tips@gridskipper.com' | |
| }), | |
| 'localhost': $H({ | |
| title: 'eater', | |
| locale: 'ny', | |
| name: 'Eater', | |
| email: 'tips@eater.com' | |
| }) | |
| }); | |
| console.log(Object.inspect(CurbedNetwork)); | |
| console.log(CurbedNetwork['localhost']); | |
| /// | |
| #<Hash:{'curbed.com': #<Hash:{'title': 'curbed', 'locale': 'ny', 'name': 'Curbed', 'email': 'tips@curbed.com'}>, 'eater.com': #<Hash:{'title': 'eater', 'locale': 'ny', 'name': 'Eater', 'email': 'tips@eater.com'}>, 'racked.com': #<Hash:{'title': 'racked', 'locale': 'ny', 'name': 'Racked', 'email': 'tips@racked.com'}>, 'la.curbed.com': #<Hash:{'title': 'curbed', 'locale': 'la', 'name': 'Curbed LA', 'email': 'la@curbed.com'}>, 'la.eater.com': #<Hash:{'title': 'eater', 'locale': 'la', 'name': 'Eater LA', 'email': 'la@eater.com'}>, 'la.racked.com': #<Hash:{'title': 'racked', 'locale': 'la', 'name': 'Racked LA', 'email': 'la@racked.com'}>, 'sf.curbed.com': #<Hash:{'title': 'curbed', 'locale': 'sf', 'name': 'Curbed SF', 'email': 'sf@curbed.com'}>, 'sf.eater.com': #<Hash:{'title': 'eater', 'locale': 'sf', 'name': 'Eater SF', 'email': 'sf@eater.com'}>, 'gridskipper.com': #<Hash:{'title': 'gridskipper', 'locale': 'international', 'name': 'Gridskipper', 'email': 'tips@gridskipper.com'}>, 'localhost': #<Hash:{'title': 'eater', 'locale': 'ny', 'name': 'Eater', 'email': 'tips@eater.com'}>}> | |
| undefined |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment