ccstevenson / stack-overflow-copy-paste

Utility functions copy/pasted (and modified slightly) from Stack Overflow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

stack-overflow-copy-paste

travis build codecov coverage version downloads MIT License semantic-release Commitizen friendly

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: Contributing to an Open Source Project on GitHub

Usage

import {flatten, snakeToCamel} from 'stack-overflow-copy-paste'

flatten([[1, 2,], 3]) // [1, 2, 3]
snakeToCamel('snake-case-string') // 'snakeCaseString'

LICENSE

MIT

About

Utility functions copy/pasted (and modified slightly) from Stack Overflow


Languages

Language:JavaScript 100.0%