git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
15 lines
332 B
JavaScript
15 lines
332 B
JavaScript
const { join } = require('path');
|
|
|
|
let nativeBinding;
|
|
try {
|
|
nativeBinding = require('./ruvector.node');
|
|
} catch (error) {
|
|
throw new Error(
|
|
'Failed to load native binding for linux-arm64-gnu. ' +
|
|
'This package may have been installed incorrectly. ' +
|
|
'Error: ' + error.message
|
|
);
|
|
}
|
|
|
|
module.exports = nativeBinding;
|