UNPKG

ember-app-scheduler

Version:

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

10 lines (8 loc) 204 B
var kindOf = require('./kindOf'); /** * Check if value is from a specific "kind". */ function isKind(val, kind){ return kindOf(val) === kind; } module.exports = isKind;