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, 26 insertions, 0 deletions
diff --git a/node_modules/copy-webpack-plugin/dist/utils/promisify.js b/node_modules/copy-webpack-plugin/dist/utils/promisify.js new file mode 100644 index 00000000..a49fc55b --- /dev/null +++ b/node_modules/copy-webpack-plugin/dist/utils/promisify.js @@ -0,0 +1,26 @@ +"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 |
