Merge pull request #3177 from Shell32-Natsu/json-patch

Improve json patch plugin
This commit is contained in:
Donny Xia
2020-11-06 16:17:24 -08:00
committed by GitHub
8 changed files with 40 additions and 93 deletions

View File

@@ -31,7 +31,7 @@ func (s StringList) Has(val []string) bool {
return false
}
func isStringSliceEqual (s []string, t []string) bool {
func isStringSliceEqual(s []string, t []string) bool {
if len(s) != len(t) {
return false
}