UNPKG

sls3-legacy

Version:

SLS3 Legacy - A fork of Serverless Framework v3

15 lines (11 loc) 251 B
'use strict'; const fse = require('fs-extra'); function dirExistsSync(dirPath) { try { const stats = fse.statSync(dirPath); return stats.isDirectory(); } catch (e) { return false; } } module.exports = dirExistsSync;