mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 19:00:56 +00:00
13 lines
234 B
JavaScript
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
|