All Projects → eggheadio-github → Stack Overflow Copy Paste

eggheadio-github / Stack Overflow Copy Paste

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

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Stack Overflow Copy Paste

Asts Workshop
Improved productivity 💯 with the practical 🤓 use of the power 💪 of Abstract Syntax Trees 🌳 to lint ⚠️ and transform 🔀 your code
Stars: ✭ 253 (-36.59%)
Mutual labels:  kcd-edu
shallow-to-mock
www.youtube.com/watch?v=lhudxkthtm0&list=plv5cvi1encjgcrph_e6d57krutidzgs0u
Stars: ✭ 16 (-95.99%)
Mutual labels:  kcd-edu
Es6 Workshop
A very hands on 👐 workshop 💻 about ES6 and beyond.
Stars: ✭ 330 (-17.29%)
Mutual labels:  kcd-edu
react-workshop
Exercises as part of a React workshop
Stars: ✭ 112 (-71.93%)
Mutual labels:  kcd-edu
codegen-vs-preval-vs-macros
A comparison of the babel plugins codegen, preval, and macros
Stars: ✭ 16 (-95.99%)
Mutual labels:  kcd-edu
babel-codemod-example
An example of how to use babel as a codemod
Stars: ✭ 24 (-93.98%)
Mutual labels:  kcd-edu
Express App Example
How I structure Express Apps (example repo)
Stars: ✭ 222 (-44.36%)
Mutual labels:  kcd-edu
Es6 Todomvc
The vanillajs example converted to es6
Stars: ✭ 351 (-12.03%)
Mutual labels:  kcd-edu
react-mocha-workshop
🐯 A workshop repository for testing React ⚛ with Mocha ☕ --> slides
Stars: ✭ 20 (-94.99%)
Mutual labels:  kcd-edu
Testing Node Apps
Test Node.js Backends on TestingJavaScript.com
Stars: ✭ 279 (-30.08%)
Mutual labels:  kcd-edu
babel-config-example
No description or website provided.
Stars: ✭ 16 (-95.99%)
Mutual labels:  kcd-edu
cra-macro-example
This is an example of how you can use Create React App with Babel Plugin Macros.
Stars: ✭ 38 (-90.48%)
Mutual labels:  kcd-edu
babel-runtime-example
An example of how to use @babel/plugin-transform-runtime
Stars: ✭ 16 (-95.99%)
Mutual labels:  kcd-edu
react-hooks-pitfalls
The slides and code examples for my talk "React Hook Pitfalls"
Stars: ✭ 94 (-76.44%)
Mutual labels:  kcd-edu
Js Testing Fundamentals
Fundamentals of Testing in JavaScript on TestingJavaScript.com
Stars: ✭ 331 (-17.04%)
Mutual labels:  kcd-edu
How Jest Mocking Works
Stars: ✭ 231 (-42.11%)
Mutual labels:  kcd-edu
why-react-hooks
Talk about React hooks
Stars: ✭ 60 (-84.96%)
Mutual labels:  kcd-edu
Beginners Guide To React
The Beginner's Guide To ReactJS
Stars: ✭ 354 (-11.28%)
Mutual labels:  kcd-edu
Jest Cypress React Babel Webpack
Configure Jest for Testing JavaScript Applications and Install, Configure, and Script Cypress for JavaScript Web Applications on TestingJavaScript.com
Stars: ✭ 339 (-15.04%)
Mutual labels:  kcd-edu
remix-tutorial-walkthrough
I live streamed working through the Remix Jokes App Tutorial
Stars: ✭ 68 (-82.96%)
Mutual labels:  kcd-edu

ARCHIVED: READ MORE

stack-overflow-copy-paste

A collection of utility JavaScript functions copy/pasted and slightly modified from StackOverflow answers 😀 (Not intended to be used in actual programs)

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

This repo is used as the basis for an Egghead.io series entitled: How to Contribute to an Open Source Project on GitHub

This repository exists as a resource for people to learn how to contribute to open source in a safe and friendly environment. Feel free to watch the video series and then contribute to this project. See the contributing guidelines.

Usage

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

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

const testObj = {a: 1, b: 2}
const copyObj = clone(testObj)

LICENSE

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].