UNPKG

express-di

Version:

Bring the dependency injection pattern to the Express

11 lines (9 loc) 177 B
var db = { 1: 'Bob' }; var n = parseInt(process.env.DL || '1', 10); exports.find = function(id, callback) { setTimeout(function() { callback(null, db[id]); }, n); };