Eric Elliott
Eric Elliott
This PR was automatically created by Snyk using the credentials of a real user.Snyk has created this PR to fix one or more vulnerable packages in the `npm` dependencies of...
Snyk has created this PR to fix one or more vulnerable packages in the `npm` dependencies of this project.  #### Changes included in this PR - Changes to...
We need a `contributing.md` doc that shares community conventions. ## Stamp conventions - [ ] Naming stamps: `your-module-name-stamp` - [ ] Keywords for `package.json`: `stamp`, `stampit` ### Automatic code quality...
Why? npm is the largest JavaScript packaged registry [by a really big margin](http://www.modulecounts.com/) (largest programming language package registry in the world, actually). npm is more than 5x as popular as...
Given this input: ```js import { pipe, toLower, split, join, filter } from 'ramda'; const randomChars = n => Math.random().toString(36).split('').slice(-(n)).join(''); const stripInvalid = str => str.replace(/[^a-zA-Z0-9-]/g, ''); const removeDashes =...
Is it possible to create a reference implementation of this that follows the current [candidate composable spec?](https://github.com/stampit-org/stamp-specification) I think this would be a good exercise to discover weaknesses in the...
Stuff like this: ``` js return m === Nothing ? true : false; ``` ...can be shortened to this: ``` js return m === Nothing ```