FurBall/uni_modules/tuniaoui-vue3/libs/lodash/_toString.ts

8 lines
195 B
TypeScript

import { baseToString } from './_baseToString'
import type { PropertyName } from './_common'
export function toString(value: PropertyName) {
return value == null ? '' : baseToString(value)
}