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

..25-Aug-2020-

go-runewidth-0.0.7/H03-Dec-2019-1,6331,409

.travis.ymlH A D25-Aug-2020224 1713

LICENSEH A D25-Aug-20201.1 KiB2217

README.mdH A D25-Aug-2020788 2818

go.modH A D25-Aug-202045 42

go.test.shH A D25-Aug-2020273 139

runewidth.goH A D25-Aug-20205.2 KiB258200

runewidth_appengine.goH A D25-Aug-2020138 94

runewidth_js.goH A D25-Aug-2020190 104

runewidth_posix.goH A D25-Aug-20201.4 KiB8367

runewidth_table.goH A D25-Aug-202023.3 KiB438430

runewidth_windows.goH A D25-Aug-2020456 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