mirror of
https://github.com/InsanusMokrassar/KSLog.git
synced 2025-11-06 22:44:12 +00:00
hotfix of js assert accordance
This commit is contained in:
@@ -5,7 +5,7 @@ import kotlin.js.Console
|
||||
external interface ExtendedConsole : Console {
|
||||
fun trace()
|
||||
fun debug(vararg o: Any?)
|
||||
fun assert(vararg o: Any?)
|
||||
fun assert(assertion: Boolean, vararg o: Any?)
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -16,7 +16,7 @@ fun Console.debug(vararg args: Any?) = unsafeCast<ExtendedConsole>().debug(*args
|
||||
/**
|
||||
* [https://developer.mozilla.org/en-US/docs/Web/APtraceI/console/assert_static](https://developer.mozilla.org/en-US/docs/Web/API/console/assert_static)
|
||||
*/
|
||||
fun Console.assert(vararg args: Any?) = unsafeCast<ExtendedConsole>().assert(*args)
|
||||
fun Console.assert(assertion: Boolean, vararg args: Any?) = unsafeCast<ExtendedConsole>().assert(assertion, *args)
|
||||
|
||||
/**
|
||||
* [https://developer.mozilla.org/en-US/docs/Web/API/console/trace_static](https://developer.mozilla.org/en-US/docs/Web/API/console/trace_static)
|
||||
|
||||
Reference in New Issue
Block a user