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

package ioutil

import "github.com/acomagu/bufpipe"

func Pipe() (PipeReader, PipeWriter) {
	return bufpipe.New(nil)
}