Skip to content
/ Utils Public

Battle-hardened suite of self-contained utility functions for both browser and Node.

License

Notifications You must be signed in to change notification settings

Alhadis/Utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

41aa72c · Mar 24, 2025
Mar 24, 2025
Mar 24, 2025
May 25, 2021
Oct 2, 2021
Jan 6, 2024
Aug 21, 2019
Dec 10, 2019
Jan 2, 2024
Jan 18, 2018
Mar 24, 2025
May 25, 2021
Apr 13, 2020
Mar 24, 2025
Dec 17, 2019
Aug 14, 2021

Repository files navigation

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.

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:

/**
 * @uses {@link foo}, {@link bar}
 */
function fooBar(){
	return foo() + bar();
}