aboutsummaryrefslogtreecommitdiffstats
path: root/utils/ioutil/pipe.go
blob: f30c452fa4e0fa7ecd671d506a4961f772fbfbff (plain) (blame)
1
2
3
4
5
6
7
8
9
// +build !js

package ioutil

import "io"

func Pipe() (PipeReader, PipeWriter) {
	return io.Pipe()
}