UNPKG

ember-app-scheduler

Version:

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

11 lines (9 loc) 205 B
var fs = require('fs'); module.exports = function isSymlink(path) { if (fs.existsSync(path)) { var stats = fs.lstatSync(path); return stats.isSymbolicLink(); } else { return false; } };