/animal-hash

Hash strings into animals "dog" -> 🐭🐱🐹

Primary LanguageGo

Animal Hash

A hash that returns a unique string of animal えもじ

Usage

package main

import (
	"fmt"

	animalhash "github.com/foxyblue/animal-hash/animal-hash"
)

func main() {
	// Output: 🐭🐱🐹
	fmt.Println(animalhash.Hash("dog", 23))
}