rdme
Version:
ReadMe's official CLI and GitHub Action.
13 lines (12 loc) • 402 B
JavaScript
import BaseCommand from './lib/baseCommand.js';
import readdirRecursive from './lib/readdirRecursive.js';
export { BaseCommand };
export { handleAPIv2Res, readmeAPIv2Fetch } from './lib/readmeAPIFetch.js';
export { readdirRecursive };
/**
* Type guard to check that a given value is a record.
*
*/
export function isRecord(v) {
return v !== null && typeof v === 'object' && !Array.isArray(v);
}