In my app.js (my main file), I want to override getTime();
So now, when I call created_at.getTime()
in all of my node.js failes that stem from app.js via requires, they should use this new getTime() function that I just overrided.
Basically, I want to change the entire getTime() function to my own, throughout my entire project.