UNPKG

ember-app-scheduler

Version:

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

13 lines (10 loc) 201 B
'use strict'; const fs = require('fs'); module.exports = function existsStat() { try { const stats = fs.statSync.apply(fs, arguments); return stats; } catch (e) { return null; } };