asdf-games/node_modules/browserify/example/api/browser/foo.js

6 lines
87 B
JavaScript
Raw Normal View History

var bar = require('./bar');
module.exports = function (n) {
return n * bar(n);
};