UNPKG

173 BJavaScriptView Raw
1// Requiring modules
2
3module.exports = function (attach) {
4 var methods = require('./methods');
5
6 if (attach) {
7 require('./native')(methods);
8 }
9
10 return methods
11};