(decorated, $e, options)
| 2 | |
| 3 | ], function () { |
| 4 | function MaximumInputLength (decorated, $e, options) { |
| 5 | this.maximumInputLength = options.get('maximumInputLength'); |
| 6 | |
| 7 | decorated.call(this, $e, options); |
| 8 | } |
| 9 | |
| 10 | MaximumInputLength.prototype.query = function (decorated, params, callback) { |
| 11 | params.term = params.term || ''; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…