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

13 lines
234 B
JavaScript

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