7 lines
147 B
JavaScript
7 lines
147 B
JavaScript
// MARK: filePath
|
|
export function filePath(path) {
|
|
if (path.startsWith(`/`)) {
|
|
path = path.slice(1);
|
|
};
|
|
return `systems/ripcrypt/${path}`;
|
|
};
|