- 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>
48 lines
805 B
JavaScript
48 lines
805 B
JavaScript
/*!
|
|
* arr-diff <https://github.com/jonschlinkert/arr-diff>
|
|
*
|
|
* Copyright (c) 2014-2017, Jon Schlinkert.
|
|
* Released under the MIT License.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = function diff(arr/*, arrays*/) {
|
|
var len = arguments.length;
|
|
var idx = 0;
|
|
while (++idx < len) {
|
|
arr = diffArray(arr, arguments[idx]);
|
|
}
|
|
return arr;
|
|
};
|
|
|
|
function diffArray(one, two) {
|
|
if (!Array.isArray(two)) {
|
|
return one.slice();
|
|
}
|
|
|
|
var tlen = two.length
|
|
var olen = one.length;
|
|
var idx = -1;
|
|
var arr = [];
|
|
|
|
while (++idx < olen) {
|
|
var ele = one[idx];
|
|
|
|
var hasEle = false;
|
|
for (var i = 0; i < tlen; i++) {
|
|
var val = two[i];
|
|
|
|
if (ele === val) {
|
|
hasEle = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (hasEle === false) {
|
|
arr.push(ele);
|
|
}
|
|
}
|
|
return arr;
|
|
}
|