image-tagger/module/utils/imagePath.mjs

5 lines
111 B
JavaScript

import { filePath } from "../consts.mjs";
export function imagePath(image) {
return filePath(image.path);
};