Initial commit: n8n Strike API node
- 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>
This commit is contained in:
30
node_modules/bach/lib/parallel.js
generated
vendored
Normal file
30
node_modules/bach/lib/parallel.js
generated
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
'use strict';
|
||||
|
||||
var initial = require('array-initial');
|
||||
var last = require('array-last');
|
||||
var asyncDone = require('async-done');
|
||||
var nowAndLater = require('now-and-later');
|
||||
|
||||
var helpers = require('./helpers');
|
||||
|
||||
function iterator(fn, key, cb) {
|
||||
return asyncDone(fn, cb);
|
||||
}
|
||||
|
||||
function buildParallel() {
|
||||
var args = helpers.verifyArguments(arguments);
|
||||
|
||||
var extensions = helpers.getExtensions(last(args));
|
||||
|
||||
if (extensions) {
|
||||
args = initial(args);
|
||||
}
|
||||
|
||||
function parallel(done) {
|
||||
nowAndLater.map(args, iterator, extensions, done);
|
||||
}
|
||||
|
||||
return parallel;
|
||||
}
|
||||
|
||||
module.exports = buildParallel;
|
||||
Reference in New Issue
Block a user