UNPKG

serverless-offline-msk

Version:

A serverless offline plugin that enables AWS MSK events

13 lines (9 loc) 218 B
'use strict'; const fsp = require('fs').promises; async function fileExists(filePath) { return fsp .lstat(filePath) .then((stats) => stats.isFile()) .catch(() => false); } module.exports = fileExists;