( func: AnyFunction )
| 23 | * @param func - A function. |
| 24 | */ |
| 25 | export function apply( func: AnyFunction ): any { |
| 26 | // eslint-disable-next-line prefer-rest-params, prefer-spread |
| 27 | return func.bind( null, ...slice( arguments, 1 ) ); |
| 28 | } |
no test coverage detected
searching dependent graphs…