UNPKG
@shareactor/shareactor-sdk
Version:
latest (0.4.2)
0.4.2
0.4.1
0.4.0
0.3.1
0.3.0
0.2.0
0.1.3
0.1.2
ShareActor JavaScript SDK.
github.com/shareactorIO/javascript-sdk
shareactorIO/javascript-sdk
@shareactor/shareactor-sdk
/
src
/
utils
/
superagent.js
13 lines
(9 loc)
•
223 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
let
superagent;
// Singleton
const
getSuperagent
= (
) => {
if
(!superagent) { superagent =
require
(
'superagent'
);
// eslint-disable-line global-require
}
return
superagent; };
module
.
exports
=
getSuperagent
();