summaryrefslogtreecommitdiffstats
path: root/pkg/jp/primitives/buffer.go
blob: 4102322e81bf900af4ae3e6119cb50c3a262febf (plain)
1
2
3
4
5
6
7
8
9
package primitives

func Buffer(size int) (out []string) {
	out = make([]string, size)
	for i := range out {
		out[i] = " "
	}
	return
}