Files
Angular-Cn/modules/angular2/src/web_workers/ui/bind.ts
T

4 lines
86 B
TypeScript

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