gitlab.com/evatix-go/core@v1.3.55/chmodhelper/IsChmodEqualUsingRwxOwnerGroupOther.go (about) 1 package chmodhelper 2 3 import "gitlab.com/evatix-go/core/chmodhelper/chmodins" 4 5 func IsChmodEqualUsingRwxOwnerGroupOther( 6 location string, 7 rwx *chmodins.RwxOwnerGroupOther, 8 ) bool { 9 if rwx == nil { 10 return false 11 } 12 13 return IsChmod( 14 location, 15 rwx.String()) 16 }