houser-js-utils Documentation - v1.0.3

Fileoverview

JS Utils - A comprehensive TypeScript utility library

Description

This library provides a wide range of utility functions organized into modules for common programming tasks including array manipulation, string processing, date handling, validation, and much more.

Example

// Import specific utilities
import { ArrayUtils, StringUtils, DateUtils, RandomUtils } from 'houser-js-utils';

// Use array utilities
const unique = ArrayUtils.deduplicate([1, 2, 2, 3]); // [1, 2, 3]

// Use string utilities
const formatted = StringUtils.capitalizeWords('hello world'); // "Hello World"

// Use date utilities
const tomorrow = DateUtils.add({ days: 1 });

// Use random utilities
const dice = RandomUtils.int(1, 6); // Random number 1-6
const seeded = RandomUtils.Seeded.fromFixed(42); // Reproducible random

Version

1.0.0

Author

Andrew Houser

License

MIT

Index

Classes

Interfaces

Type Aliases

Variables

Functions