mirror of
https://github.com/luxfi/utils.git
synced 2026-07-26 22:49:03 +00:00
14 lines
248 B
Go
14 lines
248 B
Go
// Copyright (C) 2019-2025, Lux Industries, Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package utils
|
|
|
|
func Err(errors ...error) error {
|
|
for _, err := range errors {
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|