1.0.2 • Published 4 years ago

@darkie8/excel-order-dictionary-alike v1.0.2

Weekly downloads
4
License
GNU GPLv3
Repository
github
Last release
4 years ago

Excel file order formatter for Bengali & English

=========

A small library that orders a certain colomn of an excel file with dictionary like sorting and republish it. Available for Bengali and English

Installation

npm install bengali-excel-order-dictionary

Usage

var excel-order = require('bengali-excel-order-dictionary');

// import excel-order from 'bengali-excel-order-dictionary'

// use 'bng' for bengali alphabets and 'eng' for English Alphabets
// the last param true returns formatted JSON, false return void

excel-order('https://url',
"key", 5, 'bng', 'dictionary.xlsx', true).then(

el => console.log(el)

).catch(e => console.error(e))

Output should be an excel file with formatted column

Tests

not yet written

Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.