UNPKG
common-function-utils
Version:
latest (0.0.28)
0.0.28
0.0.26
0.0.25
web和node开发中常用的函数工具。
robint-liu.github.io/common-function-utils
robint-liu/common-function-utils
common-function-utils
/
types
/
cookie
/
getCookieItem.d.ts
7 lines
(6 loc)
•
188 B
TypeScript
View Raw
1
2
3
4
5
6
7
/** * 读取一个cookie,如果cookie不存在返回null *
@category
Cookie
*
@param
name cookie的name。 */
export
default
function
getCookieItem
(
name
:
string
):
string
|
null
;