adobe-webplatform / eve

Custom events…
http://dmitry.baranovskiy.com/eve/
Apache License 2.0
316 stars 110 forks source link

add support for AMD #6

Closed jhinch closed 12 years ago

jhinch commented 12 years ago

This allows eve to be used by requirejs or other commonjs client side libraries. Nodejs doesn't support AMD in a consistent way to requirejs so I couldn't replace the typeof module != 'undefined' check.

in node define('eve', [], function() { return eve; })

equates to var eve = require('eve').eve;