UNPKG
@aliyunmq/mq-http-sdk
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
Aliyun Message Queue(MQ) Nodejs Http SDK
www.aliyun.com/product/ons
aliyunmq/mq-http-nodejs-sdk
@aliyunmq/mq-http-sdk
/
index.js
12 lines
(11 loc)
•
263 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'
;
function
supportAsyncFunctions
(
) {
try
{
new
Function
(
'(async function () {})()'
);
return
true
; }
catch
(ex) {
return
false
; } }
module
.
exports
=
supportAsyncFunctions
() ?
require
(
'./lib/client.js'
) :
require
(
'./es5/client.js'
);