GitHub 6521★

Create an empty function

JavaScript version

const noop = () => {};

// Or
const noop = Function();
// calling Function() might be detected as using eval by some security tools
Follow me on and to get more useful contents.