mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
13 lines
419 B
TypeScript
13 lines
419 B
TypeScript
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||
|
import { assertEquals, unitTest } from "./test_util.ts";
|
||
|
|
||
|
// TODO(@kitsonk) remove when we are no longer patching TypeScript to have
|
||
|
// these types available.
|
||
|
|
||
|
unitTest(function typeCheckingEsNextArrayString() {
|
||
|
const a = "abcdef";
|
||
|
assertEquals(a.at(-1), "f");
|
||
|
const b = ["a", "b", "c", "d", "e", "f"];
|
||
|
assertEquals(b.at(-1), "f");
|
||
|
});
|