UNPKG
infra-cli
Version:
latest (1.2.0)
1.2.0
1.1.1
1.1.0
1.0.10
1.0.9
1.0.8
1.0.0
infra cli
git.garena.com/shopee/sz-devops/fe/infra-cli/-/blob/master/README.md
infra-cli
/
lib
/
util
/
fetch.js
13 lines
(11 loc)
•
234 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
module
.
exports
= {
get
(url, opts) {
const
fetch =
require
(
'node-fetch'
)
const
reqOpts = {
method
:
'GET'
,
timeout
:
30000
, ...opts }
return
fetch
(url, reqOpts).
then
(
(
result
) =>
result.
json
()) } }