regex-wasm
v0.1.1
Published
Kotlin Regex compiled to Kotlin/Wasm
Downloads
431
Readme
regex-wasm
Kotlin Regex compiled to Kotlin/Wasm. The package has no runtime dependencies.
import { toMatches } from 'regex-wasm';
const matchesDigits = toMatches('\\d+');
matchesDigits('123'); // true
matchesDigits('123a'); // false: Kotlin Regex.matches checks the whole input