TseIan

Results 6 comments of TseIan

```js function unique(arr, index) { if (index == arr.length) return arr; let next = index + 1; if (Array.isArray(arr[index])) { arr[index] = unique(arr[index], 0); return unique(arr, next); } else {...

@iamjoel @crazywoola. Pls, conduct a code review.

> Hello please resolve those comments and there is a CI build failure as well. Sorry, I've toke a long vacation before spring fest. Those comments will be resolved ASAP.

can this project call aws lambda function ? what can i do for that ? thank you .

The go.Context.Done method is implemented as follows. ``` // Done returns nil (chan which will wait forever) when c.Request has no Context. func (c *Context) Done()

Inside Gin using `encoding/json` to decode body, like below. ``` package main import ( "encoding/json" "fmt" "strings" ) type Person struct { Name string `json:"name"` Age int `json:"age"` } func...