shithub: furgit

ref: df1f2fb3daa1acd25c88510f259d5535fb482126
dir: /object/type/is_base.go/

View raw version
package objecttype

// IsBaseObject reports whether ty is one of the four canonical Git object
// types encoded directly in pack entries.
func (ty Type) IsBaseObject() bool {
	return ty.details().isBaseObject
}