@bytesoftio/helpers-file

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

Usage no npm install needed!

<script type="module">
  import bytesoftioHelpersFile from 'https://cdn.skypack.dev/@bytesoftio/helpers-file';
</script>

README

@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)