summaryrefslogtreecommitdiff
path: root/funcs/strings.go
diff options
context:
space:
mode:
Diffstat (limited to 'funcs/strings.go')
-rw-r--r--funcs/strings.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/funcs/strings.go b/funcs/strings.go
index ab59c0c9..040d2e64 100644
--- a/funcs/strings.go
+++ b/funcs/strings.go
@@ -184,6 +184,11 @@ func (StringFuncs) Repeat(count int, s interface{}) (string, error) {
return strings.Repeat(str, count), nil
}
+// SkipLines -
+func (StringFuncs) SkipLines(skip int, in string) (string, error) {
+ return gompstrings.SkipLines(skip, in)
+}
+
// Sort -
//
// Deprecated: use [CollFuncs.Sort] instead