2019-08-31 20:51:14 -07:00

7 lines
297 B
TypeScript

/**
* Exports a noop that can be used in place of Ember.K which is currently deprecated.
*/
// Note, the very nature of noop is to be of any typing because it's noop.
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export const noop: (...args: Array<any>) => any = (): any => {};