
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
regexp-range
Advanced tools
create regex class range string
[一-十]
[⓪-㊿]
...
npm i regexp-range
import matchRange, { TABLE_RANGE } from 'regexp-range';
//console.log(TABLE_RANGE);
console.dir(matchRange('⓪', '㊿')); // => ['⓪' ... '㊿']
console.dir(matchRange('一', '十')); // => [ '一', '二', '三', '四', '五', '六', '七', '八', '九', '十' ]
console.dir(matchRange('零', '拾')); // => [ '零', '壱', '弐', '参', '肆', '伍', '陸', '柒', '捌', '玖', '拾' ]
console.dir(matchRange('二', '七', {
createRegExpString: true,
})); // => '二三四五六七'
console.dir(matchRange('二', '七', {
createRegExpString: true,
createRegExpClass: true,
})); // => '[二三四五六七]'
FAQs
create regex class range string `[一-十]` `[⓪-㊿]` ...
The npm package regexp-range receives a total of 1,315 weekly downloads. As such, regexp-range popularity was classified as popular.
We found that regexp-range demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.