main
 1package cookie
 2
 3import (
 4	"net/http"
 5	"time"
 6
 7	"github.com/xlgmokha/x/pkg/x"
 8)
 9
10func Reset(name string, options ...x.Option[*http.Cookie]) *http.Cookie {
11	return New(name, append(
12		options,
13		WithValue(""),
14		WithExpiration(time.Unix(0, 0)),
15	)...)
16}