/* JavaScript BigInteger library version 0.9.1 http://silentmatt.com/biginteger/ Copyright (c) 2009 Matthew Crumley Copyright (c) 2010,2011 by John Tobey Licensed under the MIT license. Support for arbitrary internal representation base was added by Vitaly Magerya. */ /* File: biginteger.js Exports: */ (function(exports) { try { eval('0n'); exports.BigInteger = require('./lib/impl/native').BigInteger; } catch (ex) { exports.BigInteger = require('./lib/impl/array').BigInteger; } })(typeof exports !== 'undefined' ? exports : this);