https://github.com/alhadis/utils
Battle-hardened suite of self-contained utility functions for both browser and Node.
https://github.com/alhadis/utils
helper-functions helpers portable pure-javascript string-manipulation tools utilities
Last synced: 3 months ago
JSON representation
Battle-hardened suite of self-contained utility functions for both browser and Node.
- Host: GitHub
- URL: https://github.com/alhadis/utils
- Owner: Alhadis
- License: isc
- Created: 2017-03-15T11:39:50.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-24T04:42:39.000Z (3 months ago)
- Last Synced: 2025-03-24T05:29:10.428Z (3 months ago)
- Topics: helper-functions, helpers, portable, pure-javascript, string-manipulation, tools, utilities
- Language: JavaScript
- Homepage: https://npmjs.com/package/alhadis.utils
- Size: 596 KB
- Stars: 9
- Watchers: 5
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
Utils
=====This is an eclectic collection of utility functions I've written over the years.
Like most of my projects, it doesn't have a name; it's simply called whatever it
exists to do. Hence the uncreatively generic name `Utils`, an apt descriptor for
something which started life as a [PasteBin snippet dump][1].[1]: https://pastebin.com/CRCaVN99
These functions share little in common with each other, each having been written
for different projects with very different time allocations. They vary vastly in
usefulness, specificity, and readability; their only consistent quality is being
able to work in isolation. Anything not 100% self-contained has its dependencies
listed in [JSDoc](https://jsdoc.app):~~~js
/**
* @uses {@link foo}, {@link bar}
*/
function fooBar(){
return foo() + bar();
}
~~~