UNPKG

@pinecone-database/pinecone

Version:

This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.

14 lines 405 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.normalizeUrl = void 0; function normalizeUrl(url) { if (!url || url.trim().length === 0) { return; } if (!url.startsWith('http://') && !url.startsWith('https://')) { return 'https://' + url; } return url; } exports.normalizeUrl = normalizeUrl; //# sourceMappingURL=normalizeUrl.js.map