Skip to content

TheCymaera/resource-converter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Resource converter (3.0.0)

Resource converter is a JavaScript/TypeScript library for converting between resources such as URLs, images, blobs, generators and readable streams.

Installation

Install via npm:

npm install resource-converter

Example usage

import * as converter from "resource-converter";

// create url from blob
await converter.dataURL.fromBlob(blob);

// load image from url
await converter.image.fromURL(url);

// create iterator from readable stream 
const response = await fetch("https://www.example.com/");
converter.asyncGenerator.fromReadableStream(response.body);

// create generator from iterator
converter.generator.fromIterator(iterator);
converter.asyncGenerator.fromAsyncIterator(asyncIterator);

License

Licensed under MIT.

All files can be used for commercial or non-commercial purposes. Do not resell. Attribution is appreciated but not due.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published