2023-01-02 16:00:42 -05:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2022-03-01 15:44:43 -05:00
|
|
|
import { assertEquals } from "./test_util.ts";
|
2021-07-18 21:56:14 -04:00
|
|
|
|
|
|
|
// TODO(@kitsonk) remove when we are no longer patching TypeScript to have
|
|
|
|
// these types available.
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(function typeCheckingEsNextArrayString() {
|
2021-07-18 21:56:14 -04:00
|
|
|
const b = ["a", "b", "c", "d", "e", "f"];
|
2021-11-08 08:24:54 -05:00
|
|
|
assertEquals(b.findLast((val) => typeof val === "string"), "f");
|
|
|
|
assertEquals(b.findLastIndex((val) => typeof val === "string"), 5);
|
2021-07-18 21:56:14 -04:00
|
|
|
});
|
2021-08-10 04:33:08 -04:00
|
|
|
|
2022-01-17 00:50:10 -05:00
|
|
|
Deno.test(function intlListFormat() {
|
|
|
|
const formatter = new Intl.ListFormat("en", {
|
|
|
|
style: "long",
|
|
|
|
type: "conjunction",
|
|
|
|
});
|
|
|
|
assertEquals(
|
|
|
|
formatter.format(["red", "green", "blue"]),
|
|
|
|
"red, green, and blue",
|
|
|
|
);
|
|
|
|
|
|
|
|
const formatter2 = new Intl.ListFormat("en", {
|
|
|
|
style: "short",
|
|
|
|
type: "disjunction",
|
|
|
|
});
|
|
|
|
assertEquals(formatter2.formatToParts(["Rust", "golang"]), [
|
|
|
|
{ type: "element", value: "Rust" },
|
|
|
|
{ type: "literal", value: " or " },
|
|
|
|
{ type: "element", value: "golang" },
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Works with iterables as well
|
|
|
|
assertEquals(
|
|
|
|
formatter.format(new Set(["red", "green", "blue"])),
|
|
|
|
"red, green, and blue",
|
|
|
|
);
|
|
|
|
assertEquals(formatter2.formatToParts(new Set(["Rust", "golang"])), [
|
|
|
|
{ type: "element", value: "Rust" },
|
|
|
|
{ type: "literal", value: " or " },
|
|
|
|
{ type: "element", value: "golang" },
|
|
|
|
]);
|
|
|
|
});
|