Eric Elliott

Results 83 issues of 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. ![merge advice](https://app.snyk.io/badges/merge-advice/?package_manager=npm&package_name=lodash&from_version=4.17.15&to_version=4.17.21&pr_id=9ac3b834-beeb-4aec-99e1-f87384b0af72&visibility=true&has_feature_flag=false) #### 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...

enhancement
help wanted

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 =...

enhancement
template

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...

help wanted
question

Stuff like this: ``` js return m === Nothing ? true : false; ``` ...can be shortened to this: ``` js return m === Nothing ```