Skip to content

Instantly share code, notes, and snippets.

@catalogchoice
Created April 21, 2011 12:49
Show Gist options
  • Save catalogchoice/934418 to your computer and use it in GitHub Desktop.
Save catalogchoice/934418 to your computer and use it in GitHub Desktop.
coffeescript name space
namespace = (target, name, block) ->
[target, name, block] = [(if typeof exports isnt 'undefined' then exports else window), arguments...] if arguments.length < 3
top = target
target = target[item] or= {} for item in name.split '.'
block target, top
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment