Functools

The 'functools' module provides functionality to modify functions at runtime

Function Signatures

// Renames a function at runtime (useful when applying decorators)
const rename = (function: Function, name: String) => Function

Last updated