- Add Strike API credentials configuration - Implement Strike node with 9 resources (Account, Balance, Currency Exchange, Deposit, Invoice, Payment, Payment Method, Payout, Rates) - Add comprehensive operation descriptions for all resources - Include CLAUDE.MD documentation - Set up build configuration with TypeScript, ESLint, and Prettier 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
509 B
JavaScript
15 lines
509 B
JavaScript
module.exports = extractDescription
|
|
|
|
// Extracts description from contents of a readme file in markdown format
|
|
function extractDescription (d) {
|
|
if (!d) return;
|
|
if (d === "ERROR: No README data found!") return;
|
|
// the first block of text before the first heading
|
|
// that isn't the first line heading
|
|
d = d.trim().split('\n')
|
|
for (var s = 0; d[s] && d[s].trim().match(/^(#|$)/); s ++);
|
|
var l = d.length
|
|
for (var e = s + 1; e < l && d[e].trim(); e ++);
|
|
return d.slice(s, e).join(' ').trim()
|
|
}
|