Skip to content

Instantly share code, notes, and snippets.

@Dykam
Created February 2, 2011 18:42
Show Gist options
  • Save Dykam/808153 to your computer and use it in GitHub Desktop.
Save Dykam/808153 to your computer and use it in GitHub Desktop.
javascript `with` immitated in coffeescript
withy = (object, props) ->
if typeof props == "function"
props.apply object
else
for property, value of props
object[property] = value
object
console.log withy {},
foo: "bar"
boo: "zar"
console.log withy {}, ->
@foo = "bar"
@boo = "zar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment