4 lines
86 B
TypeScript

export function bind(fn: Function, scope: any): Function {
return fn.bind(scope);
}