https://github.com/brecert/entity-transformer
https://github.com/brecert/entity-transformer
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/brecert/entity-transformer
- Owner: brecert
- Created: 2020-07-14T14:54:00.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2020-07-14T15:04:30.000Z (almost 6 years ago)
- Last Synced: 2025-11-14T03:02:47.635Z (7 months ago)
- Language: TypeScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Entity-Transformer
makes it (slightly) easier to transform a specific entity format from one format to another.
`js.test.js` has a test that shows how it works in more detail.
## Format
```
type Entity {
type: string
offset: usize
length: usize
children?: Entity
...data: T
}
```