UNPKG

mj-pkg

Version:

A Node.js library that abstracts away differences among popular marijuana POS providers.

12 lines (8 loc) 271 B
'use strict'; var InvalidDriver = function() { this.name = 'Invalid driver'; this.message = 'Driver is missing required method(s).'; }; InvalidDriver.prototype = new Error(); InvalidDriver.prototype.constructor = InvalidDriver; module.exports = InvalidDriver;