UNPKG

fire-up

Version:

Fire Up! is a dependency injection container designed specifically for node.js with a powerful but sleek API.

16 lines (11 loc) 357 B
'use strict'; var fireUpLib = require('../../../../../lib/index.js'); // Fire me up! module.exports = { implements: 'injection/direct/takesStaticArgs', inject: ['interfaces/unnested/singleAsList'], type: fireUpLib.constants.MODULE_TYPE_MULTIPLE_INSTANCES }; module.exports.factory = function (singleAsList, arg) { return [singleAsList, arg]; };