All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.mqtt.test.util.js Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
'use strict'

var through = require('through2')

module.exports.testStream = function () {
  return through(function (buf, enc, cb) {
    var that = this
    setImmediate(function () {
      that.push(buf)
      cb()
    })
  })
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy