- 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>
32 lines
604 B
JavaScript
32 lines
604 B
JavaScript
/*!
|
|
* global-modules <https://github.com/jonschlinkert/global-modules>
|
|
*
|
|
* Copyright (c) 2015-2017 Jon Schlinkert.
|
|
* Licensed under the MIT license.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var path = require('path');
|
|
var prefix = require('global-prefix');
|
|
var isWindows = require('is-windows');
|
|
var gm;
|
|
|
|
function getPath() {
|
|
if (isWindows()) {
|
|
return path.resolve(prefix, 'node_modules');
|
|
}
|
|
return path.resolve(prefix, 'lib/node_modules');
|
|
}
|
|
|
|
/**
|
|
* Expose `global-modules` path
|
|
*/
|
|
|
|
Object.defineProperty(module, 'exports', {
|
|
enumerable: true,
|
|
get: function() {
|
|
return gm || (gm = getPath());
|
|
}
|
|
});
|