class Protocol::HTTP::Header::ETag

def weak?

@returns [Boolean] whether the `etag` is weak.

Weak validators indicate semantically equivalent content but may not be byte-for-byte identical.

Checks whether the `etag` is a weak validator.
def weak?
	self.start_with?("W/")
end