New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

security-json-to-csv

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

security-json-to-csv

Welcome to security-json-to-csv 👋 <a href="https://git

latest
npmnpm
Version
1.0.10
Version published
Maintainers
1
Created
Source

Welcome to security-json-to-csv 👋

Version Documentation License: MIT

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

FAQs

Package last updated on 25 Feb 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts