1.0.10 ā€¢ Published 3 years ago

security-json-to-csv v1.0.10

Weekly downloads
405
License
MIT
Repository
-
Last release
3 years ago

Lib to convert JSON to XLSX and apply password options

šŸ  Homepage

āœØ Demo

Install

yarn add security-json-to-csv

Usage

import { CalopsitaCsv } from 'security-json-to-csv'
const values = [
  {
    name: 'teste11',
    email: 'teste21',
    password: 'teste31'
  },
  {
    name: 'teste12',
    email: 'teste22',
    password: 'teste32'
  }]
  
const handleClick = async (): Promise<any> => {
    const calopsitaCsv = new CalopsitaCsv();
   
   //With Password
    await calopsitaCsv.convertJsonToCsv(values, filename, 'password');

    //Without Password
    await calopsitaCsv.convertJsonToCsv(values, filename);
  }

Base64

// With Password
await calopsitaCsv.convertJsonToCsvBase64(values, filename, '123');

// Without Password
await calopsitaCsv.convertJsonToCsvBase64(values, filename);

Password Information

With password the loading will be a little bit longer than without password.

Author

šŸ‘¤ Fernando Linhares

šŸ¤ Contributing

Contributions, issues and feature requests are welcome!Feel free to check issues page.

Show your support

Give a ā­ļø if this project helped you!


This README was generated with ā¤ļø by readme-md-generator

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.10

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago