UNPKG
node-groupme
Version:
latest (4.1.0)
4.1.0
4.0.0
3.2.2
3.2.1
3.2.0
3.1.0
3.0.0
2.7.0
2.6.0
2.5.0
2.4.0
2.3.0
2.2.0
2.1.0
2.0.0
1.0.0
0.0.3
0.0.2
0.0.1
The only GroupMe API library that isn't a million years old.
groupme.js.org
groupme-js/node-groupme
node-groupme
/
dist
/
structures
/
Base.js
13 lines
•
314 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
class
Base
{
constructor
(
client, id
) {
this
.
client
= client;
this
.
id
= id; }
_clone
(
) {
return
Object
.
assign
(
Object
.
create
(
this
),
this
); } }
exports
.
default
=
Base
;
//# sourceMappingURL=Base.js.map