UNPKG

ember-app-scheduler

Version:

Ember addon to schedule work at different phases of app life cycle.

10 lines 276 B
import { HAS_NATIVE_WEAKMAP } from './weakmap'; const HAS_TYPED_ARRAYS = typeof Uint32Array !== 'undefined'; let A; if (HAS_TYPED_ARRAYS) { A = Uint32Array; } else { A = Array; } export default A; export const EMPTY_ARRAY = HAS_NATIVE_WEAKMAP ? Object.freeze([]) : [];