UNPKG

i18n-node-server

Version:

NodeJS http server to store your internationalized phrases

13 lines (7 loc) 220 B
import { writeFileSync } from "fs"; import { Records } from "./fs-service"; export class FileWriter { static writeToFile(path: string, data: Records) { writeFileSync(path, JSON.stringify(data)); } }