It appears that zero-padded numeric sequences are advertised, but not properly supported.
// Example from README.md
console.log(braces('a/{001..300}/b')); //=> ['a/(0{2}[1-9]|0[1-9][0-9]|[12][0-9]{2}|300)/b']
// Actual output is:
[ 'a/(0{0,2}[1-9]|0?[1-9][0-9]|[12][0-9]{2}|300)/b' ]
Will follow up with PR with failing test cases.
Please advice whether the fix for this is in this module, or upstream in to-regex-range.
As always, thanks for you hard work on this module and so many others.