mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-23 21:53:09 +02:00
Hygiene: Reduce copy-pasted code.
This commit is contained in:
@@ -204,7 +204,6 @@ func compareGetFloat(a interface{}, b interface{}) (float64, float64) {
|
||||
}
|
||||
|
||||
func Intersect(l1, l2 interface{}) (interface{}, error) {
|
||||
|
||||
if l1 == nil || l2 == nil {
|
||||
return make([]interface{}, 0), nil
|
||||
}
|
||||
@@ -305,7 +304,6 @@ func indirect(v reflect.Value) (rv reflect.Value, isNil bool) {
|
||||
// First is exposed to templates, to iterate over the first N items in a
|
||||
// rangeable list.
|
||||
func First(limit interface{}, seq interface{}) (interface{}, error) {
|
||||
|
||||
limitv, err := cast.ToIntE(limit)
|
||||
|
||||
if err != nil {
|
||||
|
Reference in New Issue
Block a user