UNPKG
moneda-cli
Version:
latest (3.0.0)
3.0.0
2.3.1
2.3.0
2.2.0
2.1.0
2.0.2
2.0.1
2.0.0
1.7.2
1.7.1
1.7.0
1.6.0
1.5.0
1.3.0
1.2.0
1.1.0
1.0.0
Command line to track cryptocurrency prices
github.com/hminaya/moneda-cli
hminaya/moneda-cli
moneda-cli
/
libs
/
models
/
coin.js
14 lines
(11 loc)
•
309 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class
Coin
{
constructor
(symbol, currentPrice, high, low, source, error){
this
.symbol = symbol;
this
.currentPrice = currentPrice;
this
.high = high;
this
.low = low;
this
.source = source;
this
.error = error; } } module.exports.Coin = Coin;