Skip to content

bytesoftio/helpers-file

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@bytesoftio/helpers-file

Installation

yarn add @bytesoftio/helpers-file or npm install @bytesoftio/helpers-file

Table of contents

Description

Collection of file related helpers.

Usage

downloadAsFile

Download any kind of data as a file (works only in browser).

import { downloadAsFile } from "@bytesoftio/helpers-file"

const fileName = "data.csv"
const data = "name,age\nJohn,30\nSnow,40"

downloadAsFile(fileName, data)