UNPKG

237 BJavaScriptView Raw
1var dep = require('../test/dep.js')
2
3var caracole = function() {
4 return 'oh, yes!';
5}
6
7var callAgainParent = function(){
8 dep.depGlobSync();
9}
10
11module.exports.caracole = caracole;
12module.exports.callAgainParent = callAgainParent;