UNPKG

ember-app-scheduler

Version:

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

14 lines (8 loc) 265 B
/** * Checks if the value is created by the `Object` constructor. */ function isPlainObject(value) { return (!!value && typeof value === 'object' && value.constructor === Object); } module.exports = isPlainObject;