mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 20:10:58 +00:00
11 lines
204 B
JavaScript
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
|