UNPKG

sls3-legacy

Version:

SLS3 Legacy - A fork of Serverless Framework v3

15 lines (11 loc) 250 B
'use strict'; const fse = require('fs-extra'); function fileExistsSync(filePath) { try { const stats = fse.statSync(filePath); return stats.isFile(); } catch (e) { return false; } } module.exports = fileExistsSync;