Save Helpers
Various helpers related to file saving specific functionality.
Last updated
Was this helpful?
Various helpers related to file saving specific functionality.
Source code is hosted on GitHub
yarn add @corets/save-helpersnpm install --save @corets/save-helpersSave any kind of data as a file (works only in the browser):
import { saveAsFile } from "@corets/save-helpers"
const fileName = "data.csv"
const data = "name,age\nJohn,30\nSnow,40"
saveAsFile(fileName, data)Last updated
Was this helpful?
Was this helpful?