ghoststools

A collection of functions (tools) I commonly use

Usage no npm install needed!

<script type="module">
  import ghoststools from 'https://cdn.skypack.dev/ghoststools';
</script>

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');