The dead simple pass statement from Python.
npm install --save @blackglory/pass
# or
yarn add @blackglory/passimport { pass } from '@blackglory/pass'
try {
// ...
} catch {
pass()
}Sometimes you just want to write an empty statement or empty block, but the linter does not allow you to do this.
You don't want to write comments to bypass the linter, because that looks terrible.
function pass(): voidfunction passAsync(): Promise<void>