We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8db7e83 commit e9b0fb1Copy full SHA for e9b0fb1
qs-kotlin/src/main/kotlin/io/github/techouse/qskotlin/QS.kt
@@ -18,6 +18,7 @@ object QS {
18
* @param options [DecodeOptions] optional decoder settings
19
* @return [Map<String, Any?>] the decoded Map
20
*/
21
+ @JvmStatic
22
@JvmOverloads
23
fun decode(input: Any?, options: DecodeOptions? = null): Map<String, Any?> {
24
val options = options ?: DecodeOptions()
@@ -75,6 +76,7 @@ object QS {
75
76
* @param options [EncodeOptions] optional encoder settings
77
* @return [String] the encoded query string
78
79
80
81
fun encode(data: Any?, options: EncodeOptions? = null): String {
82
val options = options ?: EncodeOptions()
0 commit comments