UNPKG

ember-app-scheduler

Version:

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

14 lines (10 loc) 244 B
define(function () { /** * Typecast a value to a String, using an empty string value for null or * undefined. */ function toString(val){ return val == null ? '' : val.toString(); } return toString; });