mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-24 11:05:17 +08:00
5 lines
133 B
TypeScript
5 lines
133 B
TypeScript
export const withTaskName = <T extends (...args: any) => any>(
|
|
name: string,
|
|
fn: T
|
|
) => Object.assign(fn, { displayName: name })
|