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
/
Gps.js
13 lines
(10 loc)
•
172 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
;
class
Gps
{
constructor
(
longitude, latitude
) {
this
.
longitude
= longitude;
this
.
latitude
= latitude; } }
module
.
exports
=
Gps
;