isthisstackoverflow/noop

View on GitHub
src/index.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Noop does nothing and returns undefined.
 * @returns {void}
 */
const noop = () => {}

export default noop