mirror of
https://github.com/PrismarineJS/node-minecraft-protocol.git
synced 2024-12-04 04:51:09 -05:00
10 lines
268 B
JavaScript
10 lines
268 B
JavaScript
|
var ursa;
|
||
|
try {
|
||
|
ursa = require("ursa");
|
||
|
} catch(e) {
|
||
|
console.log("You are using a pure-javascript implementation of RSA.");
|
||
|
console.log("Your performance might be subpar. Please consider installing URSA");
|
||
|
ursa = require("ursa-purejs");
|
||
|
}
|
||
|
module.exports=ursa;
|