The 'functools' module provides functionality to modify functions at runtime
// Renames a function at runtime (useful when applying decorators) const rename = (function: Function, name: String) => Function
Last updated 9 months ago