js-early-exit

Installation
SKILL.md

Early Return from Functions

Return early when result is determined to skip unnecessary processing. This optimization is especially valuable when the skipped branch is frequently taken or when the deferred operation is expensive.

Incorrect (processes all items even after finding answer):

function validateUsers(users: User[]) {
  let hasError = false
  let errorMessage = ''
Installs
32
GitHub Stars
1.9K
First Seen
Jan 23, 2026
js-early-exit — theorcdev/8bitcn-ui