feat(store): add office depot (#157)

Co-authored-by: Jef LeCompte <jeffreylec@gmail.com>
This commit is contained in:
bmalaski
2020-09-21 12:54:45 -04:00
committed by GitHub
parent 76f5849889
commit 0df2dcfbd4
3 changed files with 38 additions and 6 deletions
+3 -1
View File
@@ -12,6 +12,7 @@ import {NewEgg} from './newegg';
import {NewEggCa} from './newegg-ca';
import {Nvidia} from './nvidia';
import {Store} from './store';
import {OfficeDepot} from './officedepot';
const masterList = new Map([
[Adorama.name, Adorama],
@@ -24,7 +25,8 @@ const masterList = new Map([
[MicroCenter.name, MicroCenter],
[NewEgg.name, NewEgg],
[NewEggCa.name, NewEggCa],
[Nvidia.name, Nvidia]
[Nvidia.name, Nvidia],
[OfficeDepot.name, OfficeDepot]
]);
const list = new Map();