mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
10 lines
156 B
JavaScript
10 lines
156 B
JavaScript
'use strict';
|
|
|
|
const fse = require('fs-extra');
|
|
|
|
function removeFileSync(filePath) {
|
|
return fse.removeSync(filePath);
|
|
}
|
|
|
|
module.exports = removeFileSync;
|