UNPKG

emulate-mongo-2-driver

Version:

Emulate the Mongo 2.x nodejs driver on top of the Mongo 3.x nodejs driver, for bc

10 lines (8 loc) 187 B
module.exports = function (BaseClass) { function TinselBinary() { if (!(this instanceof BaseClass)) { return new BaseClass(...arguments); } } return TinselBinary; };