8 lines
159 B
JavaScript
8 lines
159 B
JavaScript
import { filePath } from "../consts.mjs";
|
|
|
|
export function imagePath(image) {
|
|
if (image.external) {
|
|
return image.path;
|
|
};
|
|
return filePath(image.path);
|
|
};
|