Skip to content

Instantly share code, notes, and snippets.

View regeda's full-sized avatar
🔦
Make code not war

Anthony Regeda regeda

🔦
Make code not war
View GitHub Profile
@regeda
regeda / underscore.go
Last active December 12, 2018 10:23
Convert CamelCase to underscore in golang with UTF-8 support.
package main
import (
"testing"
"unicode"
"unicode/utf8"
"github.com/stretchr/testify/assert"
)