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

https://github.com/silassare/gobl-utils-ts

Gobl typescript utilities for web app
https://github.com/silassare/gobl-utils-ts

Last synced: 3 months ago
JSON representation

Gobl typescript utilities for web app

Awesome Lists containing this project

README

        

# About

Gobl typescript utilities for web app.

# Notes

To prevent conflict between:

- entity class property name and column magic getter and setter
- entity class method and column method (getter and setter)

We only use:

- a prefix with a single `_` for property
- camelCase method name avoiding prefixing with `get` or `set`

So don't use: `getSomething`, `setSomething` or `our_property`

Use instead: `_getSomething`, `_setSomething`, `doSomething` or `_our_property`