basant307/AI_Governance_Project
048
1/**2 * Checks if the current environment is Node.js.3 *4 * This function checks for the existence of the `process.versions.node` property,5 * which only exists in Node.js environments.6 *7 * @returns {boolean} `true` if the current environment is Node.js, otherwise `false`.8 *9 * @example10 * if (isNode()) {11 * console.log('This is running in Node.js');12 * const fs = import('node:fs');13 * }14 */15declare function isNode(): boolean;16 17export { isNode };18 