Templating Conventions
This page provides the coding standards and best practices for the go-sprout/sprout project, ensuring consistency and maintainability across the codebase.
Last updated
"toCamelCase" -> toCamelCase(str string) string
"toUpperCase" -> toUpperCase(str string) string
"toInt" -> toInt(str string) (int, error)
"isValid" -> isValid() bool
"isEmpty" -> isEmpty(str string) bool
"hasKey" -> hasKey() bool
"hasItems" -> hasItems() boolβββ benchmarks/ # benchmarks used to ensure performance and backward
βββ docs/ # documentation of the project hosted on sprout.atom.codes
βββ internal/helpers/ # private cross registry library code
βββ pesticide/ # package to help you to test your functions on a template engine
βββ registry/ # contains all officials registry of sprout
βββ sprigin/ # TEMPORARY backward compatibility package with sprigfix: resolve issue with time registry
feat: add toSpace functions in galaxy registry
docs: update README with installation instructions