change mimedb stroe stringtable to orderedtable (#18065)

* change mimedb stroe stringtable to orderedtable

* Update lib/pure/mimetypes.nim

Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
This commit is contained in:
Bung
2021-06-07 19:57:42 +08:00
committed by GitHub
parent 2ec52faae5
commit 429b128632
2 changed files with 5 additions and 3 deletions

View File

@@ -6,6 +6,7 @@ import std/mimetypes
template main() =
var m = newMimetypes()
doAssert m.getMimetype("mp4") == "video/mp4"
doAssert m.getExt("application/json") == "json"
# see also `runnableExamples`.
# xxx we should have a way to avoid duplicating code between runnableExamples and tests