# runction

> Usefull ramda functions.

Latest version **1.2.0** (published 2018-10-01) · ISC license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.2.0 |
| Published | 2018-10-01 |
| First published | 2018-06-08 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 216.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | thanos@thechatshop.com |
| Maintainers | thechatshop |

## Links

- npm: https://www.npmjs.com/package/runction
- npm.io page: https://npm.io/package/runction

## Recent versions

- 1.2.0 (latest) — 2018-10-01
- 1.1.0 — 2018-06-08
- 1.0.2 — 2018-06-08
- 1.0.1 — 2018-06-08

## README

# Runction :tea:

<!-- TOC START min:2 max:3 link:true update:true -->
- [Development :computer:](#development-computer)
- [Install :hammer:](#install-hammer)
- [Usage](#usage)
	- [deep-remove-keys](#deep-remove-keys)
- [Testing :bomb:](#testing-bomb)
- [Deploy :ship:](#deploy-ship)
- [License](#license)

<!-- TOC END -->


Usefull ramda functions. :rocket:


## Development :computer:
```bash
$ git clone git@github.com:thechatshop/runction.git
$ cd runction
$ npm install
```

## Install :hammer:
```bash
$ npm install @thechatshop/runction
```

## Usage
### deep-remove-keys
```javascript
const {deepRemoveKeys} = require('@thechatshop/runction');

const myObject = {
	removeMe: 'noooo',
	keepMe: 'yes',
	nested : {
		removeMe: 'nooo',
		keepMeNested: yes
	}
}

const result = deepRemoveKeys(['removeMe'], myObject);
```

## Testing :bomb:
```bash
$ npm run test     # add -- --watch to monitor for changes
```

## Deploy :ship:
This app will automatically get published under `@thechatshop/runction` on npm (when new code is on master and a new tag exists with `vX.X.X` format)

:rotating_light: **Check the [config.yml](./.circleci/config.yml) for more**

Here is an example:

```bash
git checkout master
# Will generate a tag as well
npm version patch #or major, minor, patch

git push --follow-tags
```

## License
The Chat Shop proprietary license

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