UNPKG

227 Btext/coffeescriptView Raw
1
2
3inject = (cls, args...) ->
4 if cls.scope?.toUpperCase() is 'SINGLETON' and args.length
5 throw Error('Cannot assign arguments to a singleton')
6
7 _requiresInjection_: true
8 cls: cls
9 args: args
10
11module.exports = inject