UNPKG

@estarlincito/utils

Version:

A collection of utility functions designed to simplify and speed up development tasks in JavaScript and TypeScript projects.

8 lines (7 loc) 298 B
/** * Generates a copyright statement based on the build year and current year. * * @param {number} buildYear The year the content was originally built. * @returns {string} A copyright statement, e.g. "Copyright © 2022-2025". */ export declare const copyright: (buildYear: number) => string;