diff options
| author | Priyansh <[email protected]> | 2020-12-22 17:50:12 +0530 |
|---|---|---|
| committer | Priyansh <[email protected]> | 2020-12-22 17:50:12 +0530 |
| commit | 22dc033f4938d6a19e086a1cbd36ec5cade5eaab (patch) | |
| tree | 9feb963ccd5c1581e676e41004801abc67db3357 /node_modules/@electron/get/dist/esm/Cache.js | |
| parent | e93da8b04da86773247aadb1cbb1912e4f4526b2 (diff) | |
| download | styx-22dc033f4938d6a19e086a1cbd36ec5cade5eaab.tar.xz styx-22dc033f4938d6a19e086a1cbd36ec5cade5eaab.zip | |
Remove node_modules
Diffstat (limited to 'node_modules/@electron/get/dist/esm/Cache.js')
| -rw-r--r-- | node_modules/@electron/get/dist/esm/Cache.js | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/node_modules/@electron/get/dist/esm/Cache.js b/node_modules/@electron/get/dist/esm/Cache.js deleted file mode 100644 index a412d91..0000000 --- a/node_modules/@electron/get/dist/esm/Cache.js +++ /dev/null @@ -1,50 +0,0 @@ -var __rest = (this && this.__rest) || function (s, e) { - var t = {}; - for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) - t[p] = s[p]; - if (s != null && typeof Object.getOwnPropertySymbols === "function") - for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { - if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) - t[p[i]] = s[p[i]]; - } - return t; -}; -import debug from 'debug'; -import envPaths from 'env-paths'; -import * as fs from 'fs-extra'; -import * as path from 'path'; -import * as url from 'url'; -import * as sanitize from 'sanitize-filename'; -const d = debug('@electron/get:cache'); -const defaultCacheRoot = envPaths('electron', { - suffix: '', -}).cache; -export class Cache { - constructor(cacheRoot = defaultCacheRoot) { - this.cacheRoot = cacheRoot; - } - getCachePath(downloadUrl, fileName) { - const _a = url.parse(downloadUrl), { search, hash } = _a, rest = __rest(_a, ["search", "hash"]); - const strippedUrl = url.format(rest); - const sanitizedUrl = sanitize(strippedUrl); - return path.resolve(this.cacheRoot, sanitizedUrl, fileName); - } - async getPathForFileInCache(url, fileName) { - const cachePath = this.getCachePath(url, fileName); - if (await fs.pathExists(cachePath)) { - return cachePath; - } - return null; - } - async putFileInCache(url, currentPath, fileName) { - const cachePath = this.getCachePath(url, fileName); - d(`Moving ${currentPath} to ${cachePath}`); - if (await fs.pathExists(cachePath)) { - d('* Replacing existing file'); - await fs.remove(cachePath); - } - await fs.move(currentPath, cachePath); - return cachePath; - } -} -//# sourceMappingURL=Cache.js.map
\ No newline at end of file |
