Zen0x7 / RegexQL

A human readable RegEx abstraction layer
Other
0 stars 0 forks source link

SDK? #1

Open Zen0x7 opened 4 months ago

Zen0x7 commented 4 months ago

You could create applications using RegexQL, imagine a js application:

import regexql from "@regexql"

const query = "there are 1 slash and 2 alphanumeric groups slash separated";
const input = "/assets/css";

const response = await regexql
    .test(
        query,
        input
    );

console.log(response)
// true

Not bad