此代码在React Native中失败,但在Node:
中失败try {
return require('module-does-not-exist');
}catch (e) {
return null;
}
谁能告诉我为什么?
我正在尝试在我的React Native应用中使用Stanford JavaScript Crypto Library,并且它在导入时失败,因为它使用此模式可选地使用内置节点crypto
。 (source code)
似乎其他人在此之前遇到过这个障碍:https://github.com/davidbau/seedrandom/pull/44