UNPKG

ember-app-scheduler

Version:

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

10 lines (7 loc) 179 B
var path = require('path'); module.exports = function ensurePosix(filepath) { if (path.sep !== '/') { return filepath.split(path.sep).join('/'); } return filepath; };