feat: 支持 letgo 导出 rawRequest

This commit is contained in:
winixt 2023-12-14 17:02:47 +08:00
parent 30198300ff
commit ac4fcb6526
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@fesjs/plugin-request",
"version": "3.0.2",
"version": "3.0.3",
"description": "@fesjs/plugin-request",
"main": "lib/index.js",
"files": [

View File

@ -134,6 +134,8 @@ export const request = (url, data, options = {}) => {
});
};
export const rawRequest = request;
function isPromiseLike(obj) {
return !!obj && typeof obj === 'object' && typeof obj.then === 'function';
}