evansiroky/db-streamer

View on GitHub
lib/inserters/rowInserter.js

Summary

Maintainability
A
0 mins
Test Coverage
var RowInserter = module.exports = function() {};

RowInserter.prototype.end = function() {};

RowInserter.prototype.connect = function(callback) {
  if(callback) {
    callback();
  }
};

module.exports = RowInserter;