UNPKG

serverless

Version:

Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more

10 lines (7 loc) 161 B
/** * Promisified FSE */ 'use strict'; const BbPromise = require('bluebird'); const fse = BbPromise.promisifyAll(require('fs-extra')); module.exports = fse;