csval
Version:
Check CSV files against a set of validation rules.
15 lines (12 loc) • 330 B
JavaScript
import { readFile } from "fs/promises";
const readRules = async (filePath) => {
try {
const data = await readFile(filePath);
return JSON.parse(data.toString());
} catch (err) {
if (err.code === "ENOENT")
throw new Error("Cannot find the specified rules file.");
throw err;
}
};
export { readRules };