- 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>
23 lines
681 B
JavaScript
23 lines
681 B
JavaScript
"use strict";
|
|
|
|
var isPlainArray = require("../../is-plain-array")
|
|
, callable = require("../../../object/valid-callable")
|
|
, isArray = Array.isArray
|
|
, map = Array.prototype.map
|
|
, forEach = Array.prototype.forEach
|
|
, call = Function.prototype.call;
|
|
|
|
module.exports = function (callbackFn /*, thisArg*/) {
|
|
var result, thisArg;
|
|
if (!this || !isArray(this) || isPlainArray(this)) {
|
|
return map.apply(this, arguments);
|
|
}
|
|
callable(callbackFn);
|
|
thisArg = arguments[1];
|
|
result = new this.constructor(this.length);
|
|
forEach.call(this, function (val, i, self) {
|
|
result[i] = call.call(callbackFn, thisArg, val, i, self);
|
|
});
|
|
return result;
|
|
};
|