aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/cc/polyfrost/oneconfig/utils/dsl/JsonUtilsDSL.kt
blob: 43e0927f800d9e9c5639224b728bb61708e5de7a (plain)
1
2
3
4
5
6
7
8
9
10
11
package cc.polyfrost.oneconfig.utils.dsl

import cc.polyfrost.oneconfig.utils.JsonUtils
import com.google.gson.JsonElement

/**
 * Returns the [JsonElement] of the given [String].
 *
 * @see JsonUtils.parseString
 */
fun String.asJsonElement(catchExceptions: Boolean = true): JsonElement? = JsonUtils.parseString(this, catchExceptions)