mirror of
https://github.com/Luzifer/korvike.git
synced 2024-11-10 00:10:04 +00:00
9 lines
135 B
Go
9 lines
135 B
Go
|
package functions
|
||
|
|
||
|
import "strings"
|
||
|
|
||
|
func init() {
|
||
|
registerFunction("join", strings.Join)
|
||
|
registerFunction("split", strings.Split)
|
||
|
}
|