This is a sub package of [won-web3.js][repo]
The core package contains core functions for [web3.js][repo] packages. Please read the [documentation][docs] for more.
npm install won-web3-core
// in node.js
var core = require('won-web3-core');
var CoolLib = function CoolLib() {
// sets _requestmanager and adds basic functions
core.packageInit(this, arguments);
};
CoolLib.providers;
CoolLib.givenProvider;
CoolLib.setProvider();
CoolLib.BatchRequest();
CoolLib.extend();
...