mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-07 04:31:21 -06:00
7 lines
172 B
JavaScript
7 lines
172 B
JavaScript
module.exports = {
|
|
'1': /1|0/,
|
|
'100': /100|(?:[1-9]?\d)/,
|
|
'255': /255|(?:25[0-4]|2[0-4]\d|1\d\d|[1-9]?\d)/,
|
|
'360': /360|(?:3[0-5]\d|[1-2]\d\d|[1-9]?\d)/
|
|
};
|