mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-16 21:58:39 +00:00
6 lines
168 B
TypeScript
6 lines
168 B
TypeScript
/**
|
|
* Exports a noop that can be used in place of Ember.K which is currently deprecated.
|
|
*/
|
|
const noop: (...args: Array<any>) => any = () => {};
|
|
export default noop;
|