UNPKG

366 BJavaScriptView Raw
1// Generated by CoffeeScript 2.2.1
2var BaseProduct;
3
4BaseProduct = (function() {
5 class BaseProduct {
6 constructor(zoho) {
7 this.zoho = zoho;
8 if (!this.zoho) {
9 throw new Error('Expected object for zoho');
10 }
11 }
12
13 };
14
15 BaseProduct.prototype.name = 'base_product';
16
17 return BaseProduct;
18
19}).call(this);
20
21module.exports = BaseProduct;