diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2021-04-14 21:10:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-14 21:10:48 +0200 |
commit | 5214acd3d9dec56ee159544f0f6bf9834a62c097 (patch) | |
tree | adc369b0214f5660f7c0cfd881d90f80c4800c6b /op_crates/timers/README.md | |
parent | 83f6d4bf940e8e6fa1393139df51916dbb94470b (diff) |
refactor: move timers to deno_timers op crate (#10179)
Move timers out of runtime/ and into a standalone op crate.
Diffstat (limited to 'op_crates/timers/README.md')
-rw-r--r-- | op_crates/timers/README.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/op_crates/timers/README.md b/op_crates/timers/README.md new file mode 100644 index 000000000..5a2a8e516 --- /dev/null +++ b/op_crates/timers/README.md @@ -0,0 +1,5 @@ +# deno_timers + +This crate implements the timers API. + +Spec: https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#timers |