@99devco/analytics - v3.1.0
    Preparing search index...
    • Converts a flat object into a query-parameter string by concatenating keys and values with = and joining pairs with &. The function assumes the values are already safe for transport—it does not perform URL encoding.

      Parameters

      • paramObj: {}

        Object containing primitive key-value pairs to serialize

      Returns string

      A string such as key=value&flag=true

      objToQps({ page: "home", id: 123 }); // "page=home&id=123"
      objToQps({ search: encodeURIComponent("99 dev") });