UNPKG

occaecatidicta

Version:
10 lines 152 B
/** * Mock remote service */ module.exports = function(app) { return { doService: function(value, cb) { cb(null, value + 3); } }; };