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

..03-May-2022-

go-runewidth-0.0.7/H03-Dec-2019-

.travis.ymlH A D25-Aug-2020224

LICENSEH A D25-Aug-20201.1 KiB

README.mdH A D25-Aug-2020788

go.modH A D25-Aug-202045

go.test.shH A D25-Aug-2020273

runewidth.goH A D25-Aug-20205.2 KiB

runewidth_appengine.goH A D25-Aug-2020138

runewidth_js.goH A D25-Aug-2020190

runewidth_posix.goH A D25-Aug-20201.4 KiB

runewidth_table.goH A D25-Aug-202023.3 KiB

runewidth_windows.goH A D25-Aug-2020456

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