This is a collection of utility JavaScript functions copy/pasted and slightly modified from StackOverflow answers 😀
This repo is used as the basis for an Egghead.io series I'm working on entitled: How to Contribute to an Open Source Project on GitHub
import {flatten, snakeToCamel} from 'stack-overflow-copy-paste'
flatten([[1, 2,], 3]) // [1, 2, 3]
snakeToCamel('snake-case-string') // 'snakeCaseString'
MIT