New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@zodash/fs

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zodash/fs - npm Package Compare versions

Comparing version

to
0.0.12

lib/save-as/index.d.ts

12

CHANGELOG.md

@@ -6,2 +6,14 @@ # Change Log

## [0.0.12](https://github.com/zcorky/zodash/compare/@zodash/fs@0.0.11...@zodash/fs@0.0.12) (2021-04-25)
### Bug Fixes
* npm cannot publish @zodash/download, only throw 400, no detail error, what's the fuck ([c62a9a1](https://github.com/zcorky/zodash/commit/c62a9a10391845dbbc5a042cce44991446702d38))
* npm cannot publish @zodash/download, only throw 400, no detail error, what's the fuck ([01f9f36](https://github.com/zcorky/zodash/commit/01f9f367a2ca0cbff5c84aba23c0ddda731a8c37))
## [0.0.11](https://github.com/zcorky/zodash/compare/@zodash/fs@0.0.10...@zodash/fs@0.0.11) (2021-04-18)

@@ -8,0 +20,0 @@

7

lib/download/index.d.ts

@@ -1,7 +0,2 @@

export interface IOptions {
method?: 'GET' | 'POST' | 'PUT' | 'DELETE';
headers?: Record<string, string>;
body?: string;
}
export declare function download(url: string, filename?: string, options?: IOptions): Promise<void>;
import { download } from '@zodash/down_load';
export default download;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.download = void 0;
async function download(url, filename = `${Date.now()}`, options) {
const response = await fetch(url, {
method: options === null || options === void 0 ? void 0 : options.method,
headers: options === null || options === void 0 ? void 0 : options.headers,
body: options === null || options === void 0 ? void 0 : options.body,
});
const blob = await response.blob();
const dataUrl = window.URL.createObjectURL(blob);
const $link = document.createElement('a');
$link.style.display = 'none';
$link.href = dataUrl;
$link.download = filename;
document.body.appendChild($link);
$link.click();
window.URL.revokeObjectURL(dataUrl);
document.body.removeChild($link);
}
exports.download = download;
exports.default = download;
//# sourceMappingURL=index.js.map
const down_load_1 = require("@zodash/down_load");
exports.default = down_load_1.download;

@@ -12,2 +12,1 @@ "use strict";

exports.download = download_1.default;
//# sourceMappingURL=index.js.map

@@ -5,2 +5,1 @@ "use strict";

exports.default = load_css_1.loadCss;
//# sourceMappingURL=index.js.map

@@ -5,2 +5,1 @@ "use strict";

exports.default = load_image_1.loadImage;
//# sourceMappingURL=index.js.map

@@ -5,2 +5,1 @@ "use strict";

exports.default = load_js_1.loadJs;
//# sourceMappingURL=index.js.map

@@ -5,2 +5,1 @@ "use strict";

exports.default = jsonp_1.jsonp;
//# sourceMappingURL=index.js.map
{
"name": "@zodash/fs",
"version": "0.0.11",
"version": "0.0.12",
"description": "File Utils In Browser, loadJS / loadCSS / download",

@@ -70,3 +70,3 @@ "keywords": [

"dependencies": {
"@zodash/download": "^0.0.1",
"@zodash/down_load": "^0.0.1",
"@zodash/jsonp": "^0.0.8",

@@ -77,3 +77,4 @@ "@zodash/load-css": "^0.0.6",

"@zodash/save-as": "^0.0.1"
}
},
"gitHead": "253cccbe0ad13518467f4847f8ab4ed7ccc62fe7"
}