mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-01 05:13:15 +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;
|