@tcsss/python-str-format
v0.1.1
Published
A python string formatting function.
Downloads
18
Readme
python-str-format
a python string format function
to install:
npm i @tcsss/python-str-formathow to use:
const format = require('format');
format('{} is Tom's birthday!', '4th May');
// => '4th May is Tom's birthday!'
format('{:*=9}', 'a');
// => '****a****'