UNPKG

generator-robonkey

Version:

A Yeoman generator for Gulp, Templating, CSS Preprocessors, Coffeescript, PostCSS, Modernizr, svg icons/icon font generator, BrowserSync, and some libraries to choose from. Express, Wordpress, Drupal, CodeIgniter, Laravel subgenerators are available.

24 lines (19 loc) 457 B
'use strict'; var fs = require('fs'); function fileExists(targetPath, cb) { fs.stat( targetPath, function (err) { if (err) { // file does not exist- if (err.code === 'ENOENT' ) { // console.log('No file or directory at',targetPath); cb(false); } // miscellaneous error (e.g. permissions) // console.error(err); cb(false); } else { cb(true); } }) } module.exports = fileExists;