UNPKG
pushbullet
Version:
latest (3.0.0)
3.0.0
2.4.0
2.3.0
2.2.0
2.1.0
2.0.0
1.4.3
1.4.2
1.4.1
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
Use PushBullets REST API
github.com/alexwhitman/node-pushbullet-api
alexwhitman/node-pushbullet-api
pushbullet
/
lib
/
internal
/
users.js
11 lines
(9 loc)
•
244 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
PushBullet
from
'../pushbullet.js'
;
/** * Get information for the current user. * *
@returns
{
Promise
} */
PushBullet
.
prototype
.
me
=
async
function
me
(
) {
return
this
.
makeRequest
(
'get'
,
PushBullet
.
USERS_END_POINT
+
'/me'
,
null
); };