ghoststools
Version:
A collection of functions (tools) I commonly use
18 lines (13 loc) • 1.01 kB
Markdown
# GHOSTs Tools
[](https://www.npmjs.com/package/ghoststools)
[](https://ghostdev.xyz)
[](https://github.com/ghostdevv/ghoststools)
This package is simply a collection of functions (tools) that I use often, I plan on adding to this package often and heavily sticking to semver (as you should).
# Full Documentaiton
[Documentation can be viewed here](https://ghostdevv.github.io/ghoststools/) - If docs seem out of date use ctrl + f5 to "hard refresh"
# Example use
```js
import { removeKeys } from 'ghoststools'; // You can view all exported members on the docs
const inputObject = { test: true, run: () => {} };
const options = removeKeys(inputObject, 'run');
```