Skip to content

Instantly share code, notes, and snippets.

@fluffybunnies
fluffybunnies / factory_plus_inheritance.js
Created September 28, 2018 19:15
Factory + Inheritance
'use strict';
class ImportDaoInterface {
/**
This methods contract is x, y, z
*/
getOrders(dateRange, cb) {
throw 'Extend Me!'
}