enabled the compiling of most of the collections based standard kotlin library to JavaScript
This commit is contained in:
@@ -78,7 +78,7 @@ public fun <T> java.lang.Iterable<T>.contains(item : T) : Boolean {
|
||||
}
|
||||
|
||||
for (var elem in this) {
|
||||
if (elem.equals(item)) {
|
||||
if (elem == item) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user