- 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>
18 lines
322 B
JavaScript
18 lines
322 B
JavaScript
var isWin = process.platform === 'win32';
|
|
|
|
module.exports = function (str) {
|
|
var i = str.length - 1;
|
|
if (i < 2) {
|
|
return str;
|
|
}
|
|
while (isSeparator(str, i)) {
|
|
i--;
|
|
}
|
|
return str.substr(0, i + 1);
|
|
};
|
|
|
|
function isSeparator(str, i) {
|
|
var char = str[i];
|
|
return i > 0 && (char === '/' || (isWin && char === '\\'));
|
|
}
|