forked from project-flogo/contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoupper.go
More file actions
33 lines (26 loc) · 695 Bytes
/
toupper.go
File metadata and controls
33 lines (26 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package string
import (
"fmt"
"github.com/project-flogo/core/data/coerce"
"strings"
"github.com/project-flogo/core/data"
"github.com/project-flogo/core/data/expression/function"
)
func init() {
function.Register(&fnToUpper{})
}
type fnToUpper struct {
}
func (fnToUpper) Name() string {
return "toUpper"
}
func (fnToUpper) Sig() (paramTypes []data.Type, isVariadic bool) {
return []data.Type{data.TypeString}, false
}
func (fnToUpper) Eval(params ...interface{}) (interface{}, error) {
s1, err := coerce.ToString(params[0])
if err != nil {
return nil, fmt.Errorf("string.toUpper function first parameter [%+v] must be string", params[0])
}
return strings.ToUpper(s1), nil
}