UNPKG

graphviz

Version:

Node.js interface to the GraphViz graphing tool

12 lines (10 loc) 153 B
var fs = require('fs'); exports.exist = function(path) { try { fs.statSync( path ); } catch(e) { return( false ); } return( true ); }