UNPKG

165 Btext/coffeescriptView Raw
1class BaseProduct
2 name: 'base_product'
3
4 constructor: (@zoho) ->
5 if not @zoho
6 throw new Error('Expected object for zoho')
7
8module.exports = BaseProduct