UNPKG

126 BJavaScriptView Raw
1module.exports = function (s) {
2 return {
3 pipe: function (stream) {
4 stream.write(s)
5 stream.end()
6 }
7 }
8}