Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.0.10 Home All releases olderv2.0.9 v2.0.11newer
Claude Code v2.0.10

Lodash Utility Functions

What: Added proper implementations of trim, toNumber, debounce, and throttle from lodash

Details:

  • b7Q() (trim) - removes leading/trailing whitespace at line 335245
  • d7Q() (toNumber) - converts values to numbers, handles special formats at line 335259
  • CXQ() (debounce) - debounces function calls with leading/trailing options at line 336928
  • tXQ() (throttle) - throttles function calls with configurable timing at line 337236
  • These replace or supplement existing implementations for better compatibility
  • Evidence: Added functions at lines 335238-337246 in v2.0.10 (partial or missing in v2.0.9)

See this entry in the whole of v2.0.10 →