1107798da6
Generated with a codemode: https://github.com/ember-cli/ember-modules-codemod
9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
import { run } from '@ember/runloop';
|
|
|
|
export default function destroyApp(application) {
|
|
run(application, 'destroy');
|
|
if (window.server) {
|
|
window.server.shutdown();
|
|
}
|
|
}
|