fcoin/lib/crypto/bn.js
Christopher Jeffrey d4cc22e1c5
refactor: crypto.
2017-06-27 07:27:53 -07:00

20 lines
293 B
JavaScript

/*!
* bn.js - big numbers for bcoin
* Copyright (c) 2017, Christopher Jeffrey (MIT License).
* https://github.com/bcoin-org/bcoin
*/
'use strict';
/**
* @module crypto.BN
*/
/**
* bn.js
* @constructor
* @see https://github.com/indutny/bn.js
*/
module.exports = require('bn.js');