UNPKG

ember-app-scheduler

Version:

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

16 lines (11 loc) 246 B
'use strict'; function test(platform) { return /^win/.test(platform); } var currentPlatform = test(process.platform); module.exports = function isWin(platform) { if (platform) { return test(platform); } return currentPlatform; };