Skip to content

Instantly share code, notes, and snippets.

@juniorbird
Created March 18, 2016 22:27
Show Gist options
  • Save juniorbird/58fcb15a0315ffe7aa52 to your computer and use it in GitHub Desktop.
Save juniorbird/58fcb15a0315ffe7aa52 to your computer and use it in GitHub Desktop.
Minty Example
const minty = require('./index.js');
const path = require('path');
function hello(a,b,c) {
console.log(a);
var d = b + c;
console.log(d);
}
minty.file(path.join(__dirname, '/lib/test.js'));
var mint = minty.wrap(hello);
mint(1,2,3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment