Skip to content

Instantly share code, notes, and snippets.

View akisaarinen's full-sized avatar

Aki Saarinen akisaarinen

View GitHub Profile
@akisaarinen
akisaarinen / README.md
Last active August 29, 2015 14:25 — forked from mbostock/.block
Aki chart lol

Testing

function importModule(target, module) {
for (var method in module)
target[method] = module[method]
}
BASE = (function() {
var exports = {
getFoo: function() { return 'foo' }
}
return exports