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
/
hasCookieItem.d.ts
7 lines
(6 loc)
•
156 B
TypeScript
View Raw
1
2
3
4
5
6
7
/** * 检查一个cookie是否存在 *
@category
Cookie *
@param
name cookie的name。 */
export
default
function
hasCookieItem
(
name:
string
):
boolean
;