UNPKG
magic-helper
Version:
latest (1.0.0)
1.0.0
this is magic helper
magic-helper
/
lib
/
common
/
auth.js
7 lines
(6 loc)
•
238 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
{ getParams }
from
'./params'
;
// 获取宿主传回的授权信息
export
const
getAuthInfo
= (
) => {
const
{ authCtxCode, authorization, projectCode } =
getParams
();
return
{ authCtxCode, authorization, projectCode }; };