fcoin/lib/utils/native.js
2016-11-18 23:05:04 -08:00

18 lines
311 B
JavaScript

/*!
* native.js - native bindings for bcoin
* Copyright (c) 2016, Christopher Jeffrey (MIT License).
* https://github.com/bcoin-org/bcoin
*/
'use strict';
exports.binding = null;
if (+process.env.BCOIN_NO_NATIVE !== 1) {
try {
exports.binding = require('bcoin-native');
} catch (e) {
;
}
}