UNPKG
listing-crawler-model
Version:
latest (0.0.2)
0.0.2
0.0.1
Listing crawler model for crawlers and tools
github.com/listing-crawler/model
listing-crawler/model
listing-crawler-model
/
Price.js
11 lines
(8 loc)
•
162 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
class
Price
{
constructor
(
amount, currency
) {
this
.
amount
= amount;
this
.
currency
= currency; } }
module
.
exports
=
Price
;