From 26105034da4fcce7ac883c899d781f016559310d Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 8 Nov 2018 00:38:48 +0800 Subject: switch to vuepress --- .../copy-webpack-plugin/dist/utils/promisify.js | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 node_modules/copy-webpack-plugin/dist/utils/promisify.js (limited to 'node_modules/copy-webpack-plugin/dist/utils/promisify.js') 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 -- cgit v1.2.3