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 6db698f commit 84f324eCopy full SHA for 84f324e
js/js.libraries/src/core/core.kt
@@ -9,6 +9,9 @@ public external fun eval(expr: String): dynamic
9
10
public external val undefined: Nothing?
11
12
+@Deprecated("Use toInt() instead.", ReplaceWith("s.toInt()"), level = DeprecationLevel.ERROR)
13
+public external fun parseInt(s: String): Int
14
+
15
@Deprecated("Use toInt(radix) instead.", ReplaceWith("s.toInt(radix)"), level = DeprecationLevel.ERROR)
16
public external fun parseInt(s: String, radix: Int = definedExternally): Int
17
0 commit comments