mirror of
https://github.com/rwinkhart/MUTN.git
synced 2026-09-02 23:27:22 -04:00
Implement initial entry editing support (no notes editing or gen update)
This commit is contained in:
@@ -115,3 +115,12 @@ func StringGen(length int, complex bool, complexity float64) string {
|
||||
actualSpecialChars = 0
|
||||
}
|
||||
}
|
||||
|
||||
func EntryIsNotEmpty(entryData []string) bool {
|
||||
for _, line := range entryData {
|
||||
if line != "" {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user