1.0.3 • Published 4 years ago

render-id v1.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

render-id

Converts a string pattern to a string by replacing all the '#' to '0' after replacing the next counter number.

Example 1

const renderId = require('render-id');
renderId.render('TES#######',12);

// output : TES0000012

Example 2

const renderId = require('render-id');
renderId.render('XYZ#####99##',1234);

// output : XYZ000129934

Example 3

const renderId = require('render-id');
renderId.render('ABC##99##',123456);

// output : ABC12993456

Example 4

const renderId = require('render-id');
renderId.render('${FY-IN}/##99##',123456);

// output : 2019-2020/12993456

Supported Fiscal Years

SyntaxDescription
${FY-IN}Indian Fiscal Year
${FY-GB}United Kingdom Fiscal Year
${FY-US}United States Fiscal Year