1.0.12 • Published 9 months ago
adisorn_w v1.0.12
adisorn_w
How to use it and how to install it.
Installation
$ npm i adisorn_w
Features
- Export Excel based on received data.
Usage
const test = require('adisorn_w');
const data = [
{ Name: 'John Doe', Age: 28, Email: 'john@example.com' },
{ Name: 'Jane Doe', Age: 25, Email: 'jane@example.com' },
{ Name: 'Sam Smith', Age: 22, Email: 'sam@example.com' }
];
const typedata = 'xlsx';
console.log(test(data , typedata));