https://github.com/prolincur/node-polyfill-blob-file-reader
https://github.com/prolincur/node-polyfill-blob-file-reader
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/prolincur/node-polyfill-blob-file-reader
- Owner: prolincur
- License: mit
- Created: 2023-04-21T03:30:44.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-22T10:32:43.000Z (about 1 year ago)
- Last Synced: 2025-02-27T11:24:26.057Z (3 months ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/node-polyfill-blob-file-reader
- Size: 140 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# node-polyfill-blob-file-reader
Provides Polyfill of FileReader and Blob on Node
# Setup
```
npm i node-polyfill-blob-file-readeryarn add node-polyfill-blob-file-reader
```# Example Usage
```
import 'node-polyfill-blob-file-reader'import { Blob, FileReader } from 'node-polyfill-blob-file-reader'
require('node-polyfill-blob-file-reader');
const { Blob, FileReader } = require('node-polyfill-blob-file-reader');
```