Skip to content

Instantly share code, notes, and snippets.

@tmtk75
Created June 5, 2015 08:05
Show Gist options
  • Select an option

  • Save tmtk75/c4ab8e7bd2d1bf9fa085 to your computer and use it in GitHub Desktop.

Select an option

Save tmtk75/c4ab8e7bd2d1bf9fa085 to your computer and use it in GitHub Desktop.
;(function(global) {
function lib0(a) { return "lib0" + a; }
function lib1(a) { return "lib1" + a; }
function main(params, ctxt, done) {
done({a: lib0(12), b: lib1(23)});
}
// expose
global.main = main;
})(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment