keywee
v1.12.0
Published
Yet another utility library
Downloads
63
Maintainers
Readme
But who asked for this, when there are already libraries like lodash and underscore?
I like what lodash (or underscore) has to offer, but this library exports some of the weirdest and uncommon utility methods that you might occasionally need somewhere, and it would not have made sense to propose these methods to a generic utility library like lodash. Adding to it, KeyWee is 100% ES6 compliant and supports tree-shaking out of the box.
Installation
# NPM
npm install keywee
# Yarn
yarn add keywee
Installation from a CDN
KeyWee has a UMD bundle available through JSDelivr and Unpkg CDNs.
<!-- From UNPKG -->
<script src="https://unpkg.com/keywee"></script>
<!-- From JSDelivr -->
<script src="https://cdn.jsdelivr.net/npm/keywee"></script>
<script>
// UMD module is exposed through the "keywee" global variable
console.log(keywee);
</script>
License
KeyWee is released under the MIT License.