@gr-code/js-utils
v1.0.2
Published
Utils
Downloads
5
Readme
gr-concat-string
Concatenates string array by passing as divider text, initial and final.
Examples:
concatString( ['One', 'Two', 'three'], ',', 'Numbers(', ');' );
\\ Numbers(One,Two,three);concatString(['One', 'Two', 'three'], ' - ', '> ', ' <');
\\ > One - Two - three <