(content)
| 9 | var stream = this; |
| 10 | |
| 11 | function applyModifiers(content) { |
| 12 | (typeof modifiers === 'function' ? [modifiers] : modifiers).forEach(function(modifier) { |
| 13 | content = modifier(content, file); |
| 14 | }); |
| 15 | return content; |
| 16 | } |
| 17 | |
| 18 | function write(data) { |
| 19 | file.contents = new Buffer(data); |
no outgoing calls
no test coverage detected