UNPKG

mustbe

Version:

Authorization plumbing for Node+Express apps

14 lines (10 loc) 239 B
function ParameterMap(){ this.maps = {}; } ParameterMap.prototype.getMaps = function(){ return this.maps; }; ParameterMap.prototype.map = function(activity, mapper){ this.maps[activity] = mapper; }; module.exports = ParameterMap;