UNPKG
farm-invest-cli
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Are there new investment opportunities on FarmCrowdy, ThriveAgric or EFarms?
farm-invest-cli
/
src
/
utils
/
comparison.js
13 lines
(12 loc)
•
320 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
const comparison = (a, b) => { return ( a.title
=== b.title &&
a.price
=== b.price &&
a.link
=== b.link &&
a.returns
=== b.returns &&
a.type
=== b.type &&
a.address
=== b.address
) } module.exports = comparison module.exports.comparison = comparison