An open API service indexing awesome lists of open source software.

https://github.com/ryuapp/sic-type


https://github.com/ryuapp/sic-type

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# Securities Identification Code Type

This is the so-called ticker symbol used by JPX (Japan Exchange Group).

```ts
type Digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9";
type Letter = "A" | "C" | "D" | "F" | "G" | "H" | "J" | "K" | "L" | "M" | "N" | "P" | "R" | "S" | "T" | "U" | "W" | "X" | "Y";

type Sic = `${Digit}${Digit}${Digit}${Digit}` | `${Digit}${Digit}${Digit}${Letter}`;
```

## Maintenance

Run the following command:

```sh
deno test --doc
```