Skip to content

Instantly share code, notes, and snippets.

@kant2002
Created August 30, 2022 16:53
Show Gist options
  • Save kant2002/bb1417b076335c0584451139afeee5aa to your computer and use it in GitHub Desktop.
Save kant2002/bb1417b076335c0584451139afeee5aa to your computer and use it in GitHub Desktop.
Mokey Patching some REAL CODEZZ
import x from "./module.mjs";
import "./second.mjs";
x.log();
export default class T {
static log() {
console.log("T: log()");
}
}
import x from "./module.mjs";
x.log = function () {
console.log("override");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment