EASYAIuniappNewUI/node_modules/@tuniao/tnui-vue3-uniapp/libs/lodash/_castPath.ts
2025-02-08 18:50:38 +08:00

8 lines
235 B
TypeScript

import { stringToPath } from './_stringToPath'
import type { PropertyName, PropertyPath } from './_common'
export function castPath(value: PropertyPath) {
return Array.isArray(value) ? value : stringToPath(value as PropertyName)
}