mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
10 lines
161 B
JavaScript
10 lines
161 B
JavaScript
/**
|
|
* Promisified FSE
|
|
*/
|
|
'use strict';
|
|
|
|
const BbPromise = require('bluebird');
|
|
const fse = BbPromise.promisifyAll(require('fs-extra'));
|
|
|
|
module.exports = fse;
|