Files
emaui/node_modules/@mantine/form/esm/paths/get-splitted-path.mjs
2026-05-29 15:23:46 +03:00

11 lines
204 B
JavaScript

'use client';
function getSplittedPath(path) {
if (typeof path !== "string") {
return [];
}
return path.split(".");
}
export { getSplittedPath };
//# sourceMappingURL=get-splitted-path.mjs.map