@ac-essentials/misc-util
    Preparing search index...

    @ac-essentials/misc-util

    Miscellaneous utilities for JavaScript and TypeScript

    This package provides a collection of utility functions and types that can be used in various JavaScript and TypeScript projects. It includes functions for string manipulation, number formatting, object merging, timer management, and more.

    You can install the package via npm:

    npm install @ac-essentials/misc-util
    

    Or via yarn:

    yarn add @ac-essentials/misc-util
    

    You can import and use the utilities in your project as follows:

    import { truncate } from '@ac-essentials/misc-util';

    const shortString = truncate("This is a very long string that needs to be truncated.", { length: 20 });
    console.log(shortString); // Output: "This is a very lo..."

    For more detailed documentation and examples, please refer to the official documentation.

    Contributions are welcome! If you find a bug or have a feature request, please open an issue on the GitHub repository.