(msg: string, ...args: any[])
| 22 | _doOnce(() => console.warn('AG Grid: ' + msg, ...args), msg + args?.join('')); |
| 23 | } |
| 24 | export function _errorOnce(msg: string, ...args: any[]) { |
| 25 | _doOnce(() => console.error('AG Grid: ' + msg, ...args), msg + args?.join('')); |
| 26 | } |
| 27 | |
| 28 | export function _getFunctionName(funcConstructor: any) { |
| 29 | // for every other browser in the world |
no test coverage detected