11 lines
192 B
JavaScript
11 lines
192 B
JavaScript
export const __ID__ = `oft`;
|
|
|
|
/**
|
|
* @param {string} path
|
|
*/
|
|
export function filePath(path) {
|
|
if (path.startsWith(`/`)) {
|
|
path = path.slice(1);
|
|
};
|
|
return `modules/${__ID__}/${path}`;
|
|
};
|