UNPKG
graphviz
Version:
latest (0.0.9)
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.3
0.0.2
Node.js interface to the GraphViz graphing tool
algorithmique.net
glejeune/node-graphviz
graphviz
/
lib
/
deps
/
core_ext
/
fs-ext.js
12 lines
(10 loc)
•
153 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
var
fs =
require
(
'fs'
);
exports
.
exist
=
function
(
path
) {
try
{ fs.
statSync
( path ); }
catch
(e) {
return
(
false
); }
return
(
true
); }