• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..24-Mar-2022-

.gitignoreH A D24-Mar-2022264 2519

.travis.ymlH A D24-Mar-2022144 1613

LICENSEH A D24-Mar-202210 KiB191155

README.mdH A D24-Mar-2022963 2113

cmd.goH A D24-Mar-20224.8 KiB16285

convert.goH A D24-Mar-20223.6 KiB168128

dir.goH A D24-Mar-20225.8 KiB219148

file.goH A D24-Mar-20223.3 KiB14697

html.goH A D24-Mar-20221.7 KiB6137

http.goH A D24-Mar-20225.2 KiB202152

math.goH A D24-Mar-2022825 3013

path.goH A D24-Mar-20222 KiB8150

regex.goH A D24-Mar-20221.8 KiB5729

slice.goH A D24-Mar-20221.9 KiB8857

string.goH A D24-Mar-20225.4 KiB254182

time.goH A D24-Mar-20223.9 KiB11661

url.goH A D24-Mar-20221.1 KiB4218

README.md

1Common Functions
2================
3
4[![Build Status](https://travis-ci.org/unknwon/com.svg)](https://travis-ci.org/unknwon/com) [![Go Walker](http://gowalker.org/api/v1/badge)](http://gowalker.org/github.com/unknwon/com)
5
6This is an open source project for commonly used functions for the Go programming language.
7
8This package need >= **go 1.3**
9
10Code Convention: based on [Go Code Convention](https://github.com/unknwon/go-code-convention).
11
12## Contribute
13
14Your contribute is welcome, but you have to check following steps after you added some functions and commit them:
15
161. Make sure you wrote user-friendly comments for **all functions** .
172. Make sure you wrote test cases with any possible condition for **all functions** in file `*_test.go`.
183. Make sure you wrote benchmarks for **all functions** in file `*_test.go`.
194. Make sure you wrote useful examples for **all functions** in file `example_test.go`.
205. Make sure you ran `go test` and got **PASS** .
21