sprintf.js icon indicating copy to clipboard operation
sprintf.js copied to clipboard

[Feature Request] support pure bytes format?

Open skygragon opened this issue 7 years ago • 1 comments

now '%s' uses character's length (instead of bytes) in rendering fixed length format, here is an example:

> sprintf('%03s', 1)
'001'
> sprintf('%03s', '中')
'00中'

maybe we could add '%B' to render pure bytes?

skygragon avatar Nov 25 '18 01:11 skygragon

I'm not sure I understand. Shouldn't sprintf('%03s', '中') return 00中?

alexei avatar Nov 26 '18 11:11 alexei