UNPKG
@mt-kit/utils
Version:
latest (1.1.0)
1.1.0
1.0.1
1.0.0
一个常用的工具库
github.com/Not-have/micro-tools/tree/main/packages-utils
Not-have/micro-tools
@mt-kit/utils
/
dist
/
object-value-to-string
/
index.d.ts
7 lines
(6 loc)
•
171 B
TypeScript
View Raw
1
2
3
4
5
6
7
/** * obj 中所有 value 转换为 string */
export
default
function
objectValueToString<T
extends
Record
<
string
,
unknown
>>(
query
: T): { [K
in
keyof T]:
string
; };