UNPKG

hd-utils

Version:

A handy utils for modern JS developers

6 lines (5 loc) 185 B
/** * @description A no-operation function that returns undefined regardless of the arguments it receives. * @example noop() => undefined; */ export default function noop(..._) { }