UNPKG
this-is-bad-api
Version:
latest (0.0.2-fixed)
0.0.2
0.0.2-fixed
0.0.2-b
0.0.2-a
0.0.1
API wrapper for this-is-a-bad.site
this-is-bad-api
/
sharex.js
14 lines
(9 loc)
•
198 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class
ShareX
{
constructor
(
key
) {
if
(!key)
throw
new
Error
(
'No key provided.'
);
this
.
key
= key; }
// upload(image) {
// }
}
module
.
exports
=
ShareX
;