# README
snake-case
Convert given string to snake-case. (Original Code) by @elwinar
Install
go get github.com/azer/snakecase
Usage Example
import (
"github.com/azer/snakecase"
)
snakecase.SnakeCase("APIResponse")
// => api_response
snakecase.SnakeCase("Hello World")
// => hello_world
snakecase.SnakeCase("CreateDB")
// => create_db
# Functions
SnakeCase converts the given string to snake case following the Golang format: acronyms are converted to lower-case and preceded by an underscore.