https://github.com/ghostdevv/ghoststools
A collection of common functions I use
https://github.com/ghostdevv/ghoststools
Last synced: about 1 month ago
JSON representation
A collection of common functions I use
- Host: GitHub
- URL: https://github.com/ghostdevv/ghoststools
- Owner: ghostdevv
- License: other
- Created: 2021-06-27T22:47:37.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-06-18T07:55:25.000Z (over 1 year ago)
- Last Synced: 2025-08-18T22:49:07.274Z (7 months ago)
- Language: JavaScript
- Size: 445 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/funding.yml
- License: LICENSE
Awesome Lists containing this project
README
# 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');
```