Looks for every file in a specified directory and all subdirectories, and replaces a set of strings with another set of strings.
const replacer = require("./Replacer");
// Every instance of apple turns into duck
// Every instance orange turns into dog
replacer("./TestData", {
"apple": "duck",
"orange": "dog"
});