lila/data-pipeline/utils/get-word-file-path.ts
2026-07-06 13:09:30 +02:00

5 lines
150 B
TypeScript

import path from "path";
export function getWordFilePath(word: string, outputDir: string): string {
return path.join(outputDir, `${word}.json`);
}