ghoststools
v0.6.3
Published
A collection of functions (tools) I commonly use
Downloads
9
Maintainers
Readme
GHOSTs Tools
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 - If docs seem out of date use ctrl + f5 to "hard refresh"
Example use
import { removeKeys } from 'ghoststools'; // You can view all exported members on the docs
const inputObject = { test: true, run: () => {} };
const options = removeKeys(inputObject, 'run');