ember-app-scheduler
Version:
Ember addon to schedule work at different phases of app life cycle.
11 lines (10 loc) • 327 B
JavaScript
/**
* files returned from listFiles are directories if they end in /
* see: https://github.com/joliss/node-walk-sync
* "Note that directories come before their contents, and have a trailing slash"
*
* @private
*/
module.exports = function isDirectory(fullPath) {
return fullPath.charAt(fullPath.length - 1) === '/';
};