Çağatay Yücelen
Çağatay Yücelen
Marker depends on [fatih/color](https://github.com/fatih/color) library to colorizing strings for terminal output. Encapsulating the colorizing behavior inside marker library to prevent multiple imports from user side can be beneficial. I want...
Create a matcher which takes one of the time layouts of golang standard time library and matches them in given string. ``` const ( ANSIC = "Mon Jan _2 15:04:05...
```ts const [foo] = useChromeStorageLocal("foo", {}); ``` This usage returns `string` instead of object.
We should provide some documentation about code (not very comprehensive but concise). Including README.md and comments of public API of aduket. A template can be found at [marker](https://github.com/cyucelen/marker).
**Problem:** When asserting http headers, it is verbose to create expected http headers. Such as: ```go expectedHeader := http.Header{} expectedHeader.Add("X-If-You-Read-This", "send-a-hadouken-back") requestRecorder.AssertHeaderEqual(t, expectedHeader) ``` **Solution:** A wrapper for creating http.Header...