/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/unit_node/querystring_test.ts
51 строка
919 B
Kenta Moriuchi
chore: Happy New Year 2026 (#31748)
08 янв 2026, 18:28
Не верифицирован
08 янв 2026, 18:28
8193cf9
Код
Авторство
О чём код?
// Copyright 2018-2026 the Deno authors. MIT license. import { assertEquals } from "@std/assert"; import { parse, stringify } from "node:querystring"; Deno.test({ name: "stringify", fn() { assertEquals( stringify({ a: "hello", b: 5, c: true, d: ["foo", "bar"], }), "a=hello&b=5&c=true&d=foo&d=bar", ); }, }); Deno.test({ name: "parse", fn() { assertEquals(parse("a=hello&b=5&c=true&d=foo&d=bar"), { a: "hello", b: "5", c: "true", d: ["foo", "bar"], }); }, }); // https://github.com/denoland/deno/issues/21734 Deno.test({ name: "stringify options no encode", fn() { assertEquals( stringify( { a: "hello", b: 5, c: true, d: ["foo", "bar"], }, "&", "=", {}, ), "a=hello&b=5&c=true&d=foo&d=bar", ); }, });