Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miyako/norm
https://github.com/miyako/norm
4d-class 4d-component
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/miyako/norm
- Owner: miyako
- License: mit
- Created: 2024-11-29T01:38:28.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-11-29T03:10:11.000Z (about 1 month ago)
- Last Synced: 2024-11-29T03:33:16.903Z (about 1 month ago)
- Topics: 4d-class, 4d-component
- Language: 4D
- Homepage: https://miyako.github.io/norm/
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![version](https://img.shields.io/badge/version-20%2B-E23089)
![platform](https://img.shields.io/static/v1?label=platform&message=mac-intel%20|%20mac-arm%20|%20win-64&color=blue)
[![license](https://img.shields.io/github/license/miyako/norm)](LICENSE)
![downloads](https://img.shields.io/github/downloads/miyako/norm/total)# norm
## dependencies.json
```json
{
"dependencies": {
"norm": {
"github": "miyako/norm",
"version": "*"
}
}
}
``````4d
var $NFC : cs.norm.norm
$NFC:=cs.norm.norm.new("NFC")
$norm:=$NFC.norm("e"+Char(0x0301))
ALERT([$norm; ":\r"; "length:"; Length($norm)].join(""))var $NFD : cs.norm.norm
$NFD:=cs.norm.norm.new("NFD")
$norm:=$NFD.norm("é")
ALERT([$norm; ":\r"; "length:"; Length($norm)].join(""))
```the [CLI](https://github.com/miyako/go-norm) is written in Go.