Federico

Results 25 issues of Federico

Please make a release from the latest master, it's ready to support SPM but latest release is `1.2.1` from Sept 2017...

Hello, I think I found a bug in the library. When I try to initialize the `RedisStore` I get the following error: ``` TypeError: tiameter must be a valid RedisClient...

## 🚀 Feature request Support `replacer` in the `replace` function of `String` module. ### Current Behavior ```ts import * as S from 'fp-ts/lib/String' import { pipe } from 'fp-ts/lib/function' pipe(...

Implemented hook ```js export const useReactGA = (configsOrTrackingId, options) => { const [isInitialized, setInitialized] = useState(false); if (!isInitialized) { setInitialized(initialize(configsOrTrackingId, options)); } return ReactGA; }; ``` Usage: ```js useEffect(() =>...

This will close issue #20

Hello I'm trying to migrate from `Either` to `RemoteData` but I find hard to replace `TaskEither`. I was wonder if is possible to add a `TaskRemoteData` type. I [tried myself](https://gist.github.com/Rawnly/a5a1bcf81208df42ba971c4a23f4b986)...

It would be cool to have `@types/atomize` or just native support to Ts.

enhancement

Fix suggested by @iseasonora

```js //... https.get(url, response => { // if --progress run the progressbar if (flags.progress) { const len = parseInt(response.headers['content-length'], 10); const bar = new ProgressBar(chalk `{yellow ↓} {red :percent} [:bar]...

Hello, I would like to store my credentials inside a cookie. I need them available for SSR reasons. Having the ability to specify a custom `storage` would be nice. It...