https://github.com/ryuapp/sic-type
https://github.com/ryuapp/sic-type
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ryuapp/sic-type
- Owner: ryuapp
- License: unlicense
- Created: 2025-05-26T04:27:49.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-26T04:27:51.000Z (about 1 year ago)
- Last Synced: 2025-10-13T16:01:12.504Z (8 months ago)
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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
```