when i use options as you show in README like this:
const toPathRaw = compile("/user/:id");
toPathRaw({ id: ":/" }, { validate: false }); //=> "/user/:/"
I got a error: TypeError: Expected "id" to match "[^\/#\?]+?", but got ":/"
if I fix my code like below,options works.
const toPathRaw = compile("/user/:id",{ validate: false });
toPathRaw({ id: ":/" });