Socket
Book a DemoInstallSign in
Socket

stack-overflow-copy-paste

Package Overview
Dependencies
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stack-overflow-copy-paste

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

latest
Source
npmnpm
Version
1.94.0
Version published
Maintainers
1
Created
Source

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

FAQs

Package last updated on 18 Feb 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts