JS utility Library Documentation
Collection of libraries with classes and functions for JavaScript
💡 To see the API of each use the Built-in Github "Symbols" explorer in each source file. All files are fully documented with JSDocs comments to describe the purpose and usage of each function included. (the link will take you to each source file)
Here’s the improved documentation, reorganized and with API usage examples for clarity and readability:
JS Utility Library Documentation
Overview
This is a collection of modular JavaScript utility functions and classes designed for seamless integration in various projects. It supports ESM, CJS, UMD, and browser environments.
Installation
npm install @knighttower/utility
Or via CDN:
<script src="https://cdn.jsdelivr.net/npm/@knighttower/utility@VERSION_NUMBER/dist/browser/LIBRARY_NAME.min.js"></script>
<script type="module" src="https://esm.run/@knighttower/utility@VERSION_NUMBER/index.mjs"></script>
Imports
- Full library:
import utility from '@knighttower/utility';
- Individual functions:
import { convertToBool, dateFormat } from '@knighttower/utility';
API Reference
General Utility Functions
1. convertToBool(val)
Converts a value to a boolean.
2. convertToNumber(input)
Converts a variable to a number, if possible.
3. currencyToDecimal(amount)
Converts a currency string to a decimal.
4. dateFormat(dateTime, wTime)
Formats dates to MM/DD/YYYY with optional time.
5. decimalToCurrency(amount)
Converts a decimal number to a formatted currency string.
6. emptyOrValue(value, _default)
Returns default if value is empty.
7. formatPhoneNumber(phoneNumber, template)
Formats a phone number.
8. isEmpty(value)
Checks if a value is empty.
Identifiers and Randomization
9. uuid(max)
Generates a unique string.
- Params:
max: Number
- Maximum length (default: 20). - Returns:
String
- Unique string. - Usage:
uuid(16);
10. getDynamicId()
Generates a unique ID in format id__XXXX__timestamp
.
Validation
11. validateEmail(email)
Validates email format.
12. validatePhone(phone)
Validates phone number format.
Object Utilities
13. extend(target, ...sources)
Deep merges objects.
14. makeArray(item)
Converts an input to an array.
- Params:
item: Any
- Returns:
Array
- Usage:
makeArray('test');
Address Helpers
15. getGoogleMapsAddress(address)
Generates a Google Maps URL from an address.
16. openGoogleMapsAddress(object)
Opens Google Maps in a new tab.
Additional Methods
- Type Check:
typeOf(input, test)
- Returns type of input.
instanceOf(input, test)
- Returns class instance of input. - Recursive Check:
includes(collection, value, fromIndex)
- Recursively checks if a collection includes a value. - String Utilities:
toDollarString(amount)
- Converts a number to a short dollar string (2K
, 2.5M
).
Examples
import { currencyToDecimal, validateEmail } from '@knighttower/utility';
console.log(currencyToDecimal('$1,234.56'));
console.log(validateEmail('test@example.com'));
License
MIT License.
For detailed usage and testing, visit the GitHub repository.
---
# Othe Libraries Available in this package
The library is standalone (via browser script tag, loads the whole library) or modular, either the entire object or only a few functions since it is completely modular.
npm i @knighttower/utility
@exports included
Here is a list of the export paths:
- `@knighttower/utility` (DEFAULT entry: exports all libraries)
export {
DomObserver,
domObserver,
elementHelper,
selectElement,
ElementHelper,
EventBus,
extend,
addQuotes,
cleanStr,
convertKeysToSymbols,
findAndReplaceInArray,
findNested,
fixQuotes,
getArrObjFromString,
getChunks,
getDirectivesFromString,
getMatchBlock,
getMatchInBetween,
getObjectFromPath,
removeQuotes,
setExpString,
setLookUpExp,
setWildCardString,
startAndEndWith,
wildCardStringSearch,
powerHelper,
doAsync,
doPoll,
doTimeout,
promisePool,
promiseQueue,
promises,
proxyClass,
proxyObject,
urlHelper,
convertToBool,
convertToNumber,
currencyToDecimal,
dateFormat,
decimalToCurrency,
emptyOrValue,
formatPhoneNumber,
getDynamicId,
getGoogleMapsAddress,
getRandomId,
includes,
instanceOf,
isEmpty,
isNumber,
makeArray,
openGoogleMapsAddress,
randomId,
toCurrency,
toDollarString,
typeOf,
uniqueId,
uuid,
validateEmail,
validatePhone,
};
- `@knighttower/utility/dist/*` (all libraries in the dist folder (umd, cjs, esm..))
- `@knighttower/utility/node/*` (all node libraries)
- `@knighttower/utility/nodeUtils/*` (all node utilities)
- `@knighttower/utility/nodeUtils` (default export)
- `@knighttower/utility/proxyObject` (default export)
- `@knighttower/utility/proxyClass` (default export)
- `@knighttower/utility/powerHelpers` (default export)
- `@knighttower/utility/promises` (default export)
- `@knighttower/utility/EventBus` (default export)
- `@knighttower/utility/event-bus` (default export)
In the browser
Each library can be loaded individually or all at once. The library is also available via CDN.
see browser examples here: https://github.com/knighttower/JsUtility/blob/development/packages/utility/tests/index.html
see all available in the CDN here --> https://cdn.jsdelivr.net/npm/@knighttower/utility/dist/browser/
<script src="https://cdn.jsdelivr.net/npm/@knighttower/utility@VERSION_NUMBER/dist/browser/LIBRARY_NAME.min.js"></script>
//or ESM
<script src="https://esm.run/@knighttower/utility@VERSION_NUMBER/index.mjs"></script>
Node, NPM and Browser ready (esm, cjs, umd...)
Node ONLY
- NodeHelpers: A collection of functions for working with NodeJS
- Minify: A class for minifying files
- Rollup Config: Advanced Rollup configuration for building libraries
- Webpack Config: Advanced Webpack configuration for building libraries
List of functions included in utility
{
convertToBool: "accurately converts a value to a boolean, accepts int, string and boolean",
convertToNumber: "accurately converts a value to a number, accepts int, string and boolean",
currencyToDecimal: "converts a currency string to a decimal number",
dateFormat: "formats a date object to a specified format string",
decimalToCurrency: "converts a decimal number to a currency string",
emptyOrValue: "returns a default value if a given value is empty or undefined, uses isEmpty()",
getGoogleMapsAddress: "gets a formatted address string for a location using the Google Maps API",
formatPhoneNumber: "formats a phone number string to a standardized format",
getDynamicId: "generates a unique ID string based on a prefix, timestamp and a random number",
getRandomId: "generates a random ID string",
includes: "checks if a collection (object|string|array) includes a given value",
isNumber: "checks if a given value is a number (that includes string numbers and floats)",
isEmpty: "checks if a given value is empty, checks arrays, objects, etc",
logThis: "logs a message to the console with a specified prefix",
openGoogleMapsAddress: "opens Google Maps in a new tab with a specified address",
toCurrency: "formats a number to a currency string",
toDollarString: "formats a number to a dollar string",
typeOf: "gets the type of a value and can also return simple comparisons. For more advanced type-checking, use the 'typeCheck' library https://github.com/knighttower/JsTypeCheck",
instanceOf: "gets the instance of a value and can also return simple comparisons",
validateEmail: "validates an email address string to ensure it is in a valid format",
validatePhone: "validates a phone number string to ensure it is in a valid format"
makeArray: "converts a value to an array, if it is not already an array"
}
You can see the src with github and explore the functions by using the "symbols explorer" from Github here
List of functions included in powerHelper
{
addQuotes: "adds quotes around a string",
cleanStr: "removes delimiters from a string",
convertKeysToSymbols: "converts object keys to symbols",
findAndReplaceInArray: "finds and replaces a value in an array",
findNested: "finds arrays or objects in a string",
fixQuotes: "replaces single quotes with double quotes in a string",
getArrObjFromString: "extracts an array or objects from a string",
getDirectivesFromString: "extracts directives from a string",
getMatchBlock: "extracts a block of text between two delimiters",
getMatchInBetween: "extracts a substring between two delimiters",
removeQuotes: "removes quotes from a string",
setExpString: "sets a regular expression string based on a given pattern",
setLookUpExp: "sets a regular expression string for looking up a value in an object",
startAndEndWith: "looks for a string that starts and ends with a given pattern",
setWildCardString: "sets a wildcard at the beginning, end, or middle of a string",
wildCardStringSearch: "searches for a string using wildcards"
getObjectFromPath: "gets an object from a path",
}
You can see the src with github and explore the functions by using the "symbols explorer" from Github here
Description
Most functions here are extremely handy without the overhead of big libraries.
However, for other most advance features it is recomended to also use other libraries, like if you need extensive use of Money, date, numbers functions (ex. money.js, moment.js, validate.js, lodash, v8n.js, jquery, moderndash, etc)
All functions are handy, but the most handy of all is "emptyOrValue" which helps to mitigate a lot of headaches when dealing with variables to know whether or not they have a value or even to set a default value when empty. From the powerHelper, there are a lot of regex and string functions that are very handy.
All Functions have also been Unit Tested and tests are in the source code if you want to experiment or see more examples.
Usage
import utility from '@knighttower/utility';
import powerHelper from '@knighttower/utility';
import { functionThatYouWantToUse, otherFunction } from '@knighttower/utility';
import { utility as yourCustomName } from '@knighttower/utility';
import { functionThatYouWantToUse } from 'https://cdn.jsdelivr.net/npm/@knighttower/utility@latest/index.mjs';
Or even better, use it along with Vite and Autoimport like:
import AutoImport from 'unplugin-auto-import/vite';
... plugins: [
AutoImport({ imports: [ { '@knighttower/utility': ['utility'] }] }),
]
let something = utility.theFunctionYouWantToUse();
License
This project is licensed under the MIT License.
Checkout more cool stuff at https://knighttower.io/