adisorn_export_excel
v1.0.14
Published
testAdisorn
Downloads
24
Maintainers
Readme
adisorn_export_excel
How to use it and how to install it.
Installation
$ npm i adisorn_export_excel
Features
- Export Excel based on received data.
Usage
const test = require('adisorn_export_excel');
const data = [
{ Name: 'John Doe', Age: 28, Email: '[email protected]' },
{ Name: 'Jane Doe', Age: 25, Email: '[email protected]' },
{ Name: 'Sam Smith', Age: 22, Email: '[email protected]' }
];
const typedata = 'xlsx';
console.log(test(data , typedata));