CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
index.js11 linesDownload Raw Back to src
1/**2 * Detect Electron renderer process, which is node, but we should3 * treat as a browser.4 */5 6if (typeof process !== 'undefined' && process.type === 'renderer') {7  module.exports = require('./browser.js');8} else {9  module.exports = require('./node.js');10}11