diff options
Diffstat (limited to 'node_modules/copy-webpack-plugin/dist/utils/promisify.js')
| -rw-r--r-- | node_modules/copy-webpack-plugin/dist/utils/promisify.js | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/node_modules/copy-webpack-plugin/dist/utils/promisify.js b/node_modules/copy-webpack-plugin/dist/utils/promisify.js deleted file mode 100644 index a49fc55b..00000000 --- a/node_modules/copy-webpack-plugin/dist/utils/promisify.js +++ /dev/null @@ -1,26 +0,0 @@ -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -var stat = exports.stat = function stat(inputFileSystem, path) { - return new Promise(function (resolve, reject) { - inputFileSystem.stat(path, function (err, stats) { - if (err) { - reject(err); - } - resolve(stats); - }); - }); -}; - -var readFile = exports.readFile = function readFile(inputFileSystem, path) { - return new Promise(function (resolve, reject) { - inputFileSystem.readFile(path, function (err, stats) { - if (err) { - reject(err); - } - resolve(stats); - }); - }); -};
\ No newline at end of file |
