UNPKG

@nossbigg/peerdeps-manager

Version:

A simple CLI utility to install (and uninstall) your `node` peer dependencies to your dev dependencies.

9 lines (8 loc) 126 B
const isFileExists = (filePath) => { try { fs.statSync(filePath); return true; } catch { return false; } };