Codebase list golang-github-mattn-go-colorable / a2827f0
Check result of Write Yasuhiro Matsumoto 2 years ago
1 changed file(s) with 4 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
2626 }
2727 if c1 != 0x1b {
2828 bw[0] = c1
29 w.out.Write(bw[:])
29 _, err = w.out.Write(bw[:])
30 if err != nil {
31 break loop
32 }
3033 continue
3134 }
3235 c2, err := er.ReadByte()