Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
Scarjit committed Feb 3, 2025
1 parent abf3079 commit b172fe5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions wasm/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ func blobl(_ js.Value, args []js.Value) any {
if len(args) != 2 {
return fmt.Sprintf("Expected two arguments, received %d instead", len(args))
}
for i, arg := range args {
fmt.Printf("arg %d: %+v\n", i, arg)
}

mapping, err := bloblang.NewEnvironment().Parse(args[0].String())
if err != nil {
Expand Down

0 comments on commit b172fe5

Please sign in to comment.