UNPKG
@loom-io/node-filesystem-adapter
Version:
latest (0.12.11)
0.12.11
0.12.10
0.12.9
0.12.8
0.12.7
0.12.6
0.12.5
0.12.4
0.12.3
0.12.2
0.12.1
0.12.0
0.11.0
0.10.1
0.10.0
0.9.2
0.9.1
0.9.0
0.8.0
0.7.1
0.7.0
A file system wrapper for Node.js and Bun
loom-io.cotton-coding.com
cotton-coding/loom-io
@loom-io/node-filesystem-adapter
/
dist
/
utils
/
error-handling.js
4 lines
(3 loc)
•
123 B
JavaScript
View Raw
1
2
3
4
export
function
isNodeErrnoExpression
(
error
) {
return
error
instanceof
Error
&&
'code'
in
error &&
'errno'
in
error; }