@yesstudio/nuxt-composables
    Preparing search index...

    Interface _PathParserOptionsInternal

    interface _PathParserOptions {
        end?: boolean;
        sensitive?: boolean;
        start?: boolean;
        strict?: boolean;
    }
    Index

    Properties

    end?: boolean

    Should the RegExp match until the end by appending a $ to it.

    true

    sensitive?: boolean

    Makes the RegExp case-sensitive.

    false

    start?: boolean

    Should the RegExp match from the beginning by prepending a ^ to it.

    true

    strict?: boolean

    Whether to disallow a trailing slash or not.

    false