UNPKG

listing-crawler-model

Version:

Listing crawler model for crawlers and tools

11 lines (8 loc) 162 B
'use strict'; class Price { constructor(amount, currency) { this.amount = amount; this.currency = currency; } } module.exports = Price;