fun escapeIds()

in src/main/kotlin/com/intellij/internal/statistic/eventLog/StatisticsEventEscaper.kt [74:80]


    fun escapeIds(eventData: Map<String, String>): HashMap<String, String> {
        val escapedData = hashMapOf<String, String>()
        for ((key, value) in eventData) {
            escapedData[escapeFieldName(key)] = escapeEventIdOrFieldValue(value)
        }
        return escapedData
    }