@pinecone-database/pinecone
Version:
This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.
13 lines • 354 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.debugLog = void 0;
const debugLog = (str) => {
if (typeof process !== 'undefined' &&
process &&
process.env &&
process.env.PINECONE_DEBUG) {
console.log(str);
}
};
exports.debugLog = debugLog;
//# sourceMappingURL=debugLog.js.map
;