mold
mold copied to clipboard
:scissors: Is a general library to help modify or set data within data structures and other objects.
Package mold
Package mold is a general library to help modify or set data within data structures and other objects.
How can this help me you ask, please see the examples here
Installation
Use go get.
go get -u github.com/go-playground/mold/v4
Examples
Example | Description |
---|---|
simple | A basic example with custom function. |
full | A more real life example combining the usage of multiple packages. |
Modifiers
These functions modify the data in-place.
Name | Description |
---|---|
default | Sets the provided default value only if the data is equal to it's default datatype value. |
trim | Trims space from the data. |
ltrim | Trims spaces from the left of the data provided in the params. |
rtrim | Trims spaces from the right of the data provided in the params. |
tprefix | Trims a prefix from the value using the provided param value. |
tsuffix | Trims a suffix from the value using the provided param value. |
lcase | lowercases the data. |
ucase | Uppercases the data. |
snake | Snake Cases the data. |
camel | Camel Cases the data. |
title | Title Cases the data. |
ucfirst | Upper cases the first character of the data. |
strip_alpha | Strips all ascii characters from the data. |
strip_num | Strips all ascii numeric characters from the data. |
strip_alpha_unicode | Strips all unicode characters from the data. |
strip_num_unicode | Strips all unicode numeric characters from the data. |
strip_punctuation | Strips all ascii punctuation from the data. |
Scrubbers
These functions obfuscate the specified types within the data for pii purposes.
Name | Description |
---|---|
emails | Scrubs multiple emails from data. |
Scrubs the data from and specifies the sha name of the same name. | |
text | Scrubs the data from and specifies the sha name of the same name. |
name | Scrubs the data from and specifies the sha name of the same name. |
fname | Scrubs the data from and specifies the sha name of the same name. |
lname | Scrubs the data from and specifies the sha name of the same name. |
Special Information
- To use a comma(,) within your params replace use it's hex representation instead '0x2C' which will be replaced while caching.
Contributing
I am definitly interested in the communities help in adding more scrubbers and modifiers. Please send a PR with tests, and prefereably no extra dependencies, at lease until a solid base has been built.
Complimentary Software
Here is a list of software that compliments using this library post decoding.
- validator - Go Struct and Field validation, including Cross Field, Cross Struct, Map, Slice and Array diving.
- form - Decodes url.Values into Go value(s) and Encodes Go value(s) into url.Values. Dual Array and Full map support.
License
Distributed under MIT License, please see license file in code for more details.