Files
wifi-densepose/npm/core/platforms/win32-x64-msvc/index.js
ruv d803bfe2b1 Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector
git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
2026-02-28 14:39:40 -05:00

16 lines
394 B
JavaScript

const { join } = require('path');
let nativeBinding;
try {
nativeBinding = require('./ruvector.node');
} catch (error) {
throw new Error(
'Failed to load native binding for win32-x64-msvc. ' +
'This package may have been installed incorrectly. ' +
'Ensure you have Visual C++ Redistributable installed. ' +
'Error: ' + error.message
);
}
module.exports = nativeBinding;