/**
* @module helpers
* @description Utility helpers for Angular Decaf applications
* @summary The helpers module provides a collection of utility functions and types
* that assist with common tasks in Decaf Angular applications. It includes functions
* for array manipulation, date formatting, logging, string operations, and various
* utility functions for working with Angular components and services. These helpers
* simplify common operations and promote code reuse across the application.
* Key exports include logging utilities, string manipulation functions, and component
* utility functions.
*/
export * from './utils';
Source