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

..22-Nov-2021-

go-runewidth-0.0.13/H24-May-2021-1,7981,546

LICENSEH A D22-Nov-20211.1 KiB2217

README.mdH A D22-Nov-2021788 2818

go.modH A D22-Nov-202184 63

go.sumH A D22-Nov-2021163 32

go.test.shH A D22-Nov-2021273 139

runewidth.goH A D22-Nov-20215.6 KiB274216

runewidth_appengine.goH A D22-Nov-2021138 94

runewidth_js.goH A D22-Nov-2021190 104

runewidth_posix.goH A D22-Nov-20211.4 KiB8367

runewidth_table.goH A D22-Nov-202123.4 KiB440432

runewidth_windows.goH A D22-Nov-2021456 2919

README.md

1go-runewidth
2============
3
4[![Build Status](https://travis-ci.org/mattn/go-runewidth.png?branch=master)](https://travis-ci.org/mattn/go-runewidth)
5[![Codecov](https://codecov.io/gh/mattn/go-runewidth/branch/master/graph/badge.svg)](https://codecov.io/gh/mattn/go-runewidth)
6[![GoDoc](https://godoc.org/github.com/mattn/go-runewidth?status.svg)](http://godoc.org/github.com/mattn/go-runewidth)
7[![Go Report Card](https://goreportcard.com/badge/github.com/mattn/go-runewidth)](https://goreportcard.com/report/github.com/mattn/go-runewidth)
8
9Provides functions to get fixed width of the character or string.
10
11Usage
12-----
13
14```go
15runewidth.StringWidth("つのだ☆HIRO") == 12
16```
17
18
19Author
20------
21
22Yasuhiro Matsumoto
23
24License
25-------
26
27under the MIT License: http://mattn.mit-license.org/2013
28