@kwayteow/utils - v0.6.0
    Preparing search index...

    Variable queryStringHelpersConst

    queryStringHelpers: {
        append: (
            url: string,
            params: Record<string, undefined | null | string | number | boolean>,
        ) => string;
        parse: (queryString: string) => Record<string, string>;
        stringify: (
            params: Record<string, undefined | null | string | number | boolean>,
            options?: { skipEmpty?: boolean; skipNull?: boolean },
        ) => string;
    } = ...

    查询字符串辅助函数集合

    Type declaration

    • append: (
          url: string,
          params: Record<string, undefined | null | string | number | boolean>,
      ) => string

      附加查询参数

    • parse: (queryString: string) => Record<string, string>

      解析查询字符串

    • stringify: (
          params: Record<string, undefined | null | string | number | boolean>,
          options?: { skipEmpty?: boolean; skipNull?: boolean },
      ) => string

      字符串化查询参数