2017-10-19 18:17:16 -07:00
|
|
|
/**
|
2017-10-23 16:50:48 -07:00
|
|
|
* Exports a noop that can be used in place of Ember.K which is currently deprecated.
|
2017-10-19 18:17:16 -07:00
|
|
|
*/
|
2017-10-23 16:50:48 -07:00
|
|
|
const noop: (...args: Array<any>) => any = () => {};
|
|
|
|
export default noop;
|