source: node_modules/es-toolkit/dist/function/noop.d.ts

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 265 bytes
RevLine 
[a762898]1/**
2 * A no-operation function that does nothing.
3 * This can be used as a placeholder or default function.
4 *
5 * @example
6 * noop(); // Does nothing
7 *
8 * @returns {void} This function does not return anything.
9 */
10declare function noop(): void;
11
12export { noop };
Note: See TracBrowser for help on using the repository browser.