# dingleberry

> utility functions

Latest version **0.0.1** (published 2015-06-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install dingleberry
pnpm add dingleberry
yarn add dingleberry
bun add dingleberry
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2015-06-12 |
| First published | 2015-06-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Preston Pham |
| Maintainers | preston |
| Keywords | utility, functions, poop |

## Links

- npm: https://www.npmjs.com/package/dingleberry
- Repository: https://github.com/prestonp/dingleberry
- Issues: https://github.com/prestonp/dingleberry/issues
- npm.io page: https://npm.io/package/dingleberry

## Alternatives

- [lodash.assign](https://npm.io/package/lodash.assign.md) — 2.3M weekly downloads
- [lodash.chunk](https://npm.io/package/lodash.chunk.md) — 1.8M weekly downloads
- [react-native-ios-utilities](https://npm.io/package/react-native-ios-utilities.md) — 138.5K weekly downloads
- [@technically/lodash](https://npm.io/package/@technically/lodash.md) — 50.9K weekly downloads
- [@fluid-topics/ft-icon](https://npm.io/package/@fluid-topics/ft-icon.md) — 20.6K weekly downloads

## Recent versions

- 0.0.1 (latest) — 2015-06-12

## README

# dingleberry [![Build Status](https://travis-ci.org/prestonp/dingleberry.svg?branch=master)](https://travis-ci.org/prestonp/dingleberry)

> collection of fun utility functions

Covers a subset of useful functions from utility libs like underscore, lodash, and async

Why? Mostly as an exercise in learning ES2015. That's p much it.

### Install

```shell
npm install dingleberry
```

### Usage

```js
var _ = require('dingleberry');

var add1 = function(val) { return val + 1; };
var mult2 = function(val) { return val * 2; };
var add1mult2 = _.pipeline(add1, mult2);

add1mult2(7); // 16
```

### API

* debounce(fn, interval)
* pipeline(fn, fn, ...) (alias compose)
* pluck(list, property)

More coming soon

### Build

```shell
npm install -g babel
npm install -g uglify-js
npm run build
```

### License

MIT

---
_Source: https://npm.io/package/dingleberry · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
