mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 22:33:49 +00:00
* Implement RFC 413 * Implement RFC 413 * Implement RFC 413 * Implement RFC 413 * https://github.com/nim-lang/Nim/pull/18749#discussion_r696320995 * Update lib/js/dom_extensions.nim Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com> * Update lib/js/dom_extensions.nim * https://github.com/nim-lang/Nim/pull/18749#discussion_r696913310 Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com> Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
21 lines
277 B
Nim
21 lines
277 B
Nim
discard """
|
|
cmd: "nim $target $options --hints:on --experimental:strictFuncs --experimental:views $file"
|
|
targets: "js"
|
|
"""
|
|
{.warning[UnusedImport]: off.}
|
|
|
|
import
|
|
asyncjs,
|
|
dom,
|
|
jsconsole,
|
|
jsffi,
|
|
jsre
|
|
|
|
import std/[
|
|
jsbigints,
|
|
]
|
|
|
|
import std/private/[
|
|
jsutils,
|
|
]
|