elwayman02/ember-user-activity

View on GitHub
addon/services/-private/fastboot-aware-event-manager.js

Summary

Maintainability
A
0 mins
Test Coverage
import EventManagerService from 'ember-user-activity/services/-private/event-manager';

export default class FastBootAwareEventManagerService extends EventManagerService {
  get _isFastBoot() {
    return typeof FastBoot !== 'undefined';
  }
}