UNPKG

@opengis/fastify-table

Version:

core-plugins

7 lines (6 loc) 287 B
import fs from "node:fs"; const redactionList = ["clientSecret", "clientId", "password"]; const customRedactionList = fs.existsSync("redactionList.json") ? JSON.parse(fs.readFileSync("redactionList.json", "utf-8")) : []; export default redactionList.concat(customRedactionList);