Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 384 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 384 Bytes

Numeronym

This is just a simple library that creates numeronyms (i18n => internationalization).

To install just do a simple go get github.com/juztin/numeronym
To use:

package main

import (
	"fmt"

	"github.com/juztin/numeronym"
)

func main() {
	text := []byte("internationalization")
	b := numeronym.Parse(text)
	fmt.Println(string(b))

	// OUTPUTS:
	//	i18n
}