main
 1package cookie
 2
 3import (
 4	"net/http"
 5
 6	"github.com/xlgmokha/x/pkg/x"
 7)
 8
 9func New(name string, options ...x.Option[*http.Cookie]) *http.Cookie {
10	return x.New[*http.Cookie](x.Prepend[x.Option[*http.Cookie]](options, WithName(name))...)
11}