You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
322 B
14 lines
322 B
var DomUtils = module.exports; |
|
|
|
[ |
|
require("./lib/stringify"), |
|
require("./lib/traversal"), |
|
require("./lib/manipulation"), |
|
require("./lib/querying"), |
|
require("./lib/legacy"), |
|
require("./lib/helpers") |
|
].forEach(function(ext){ |
|
Object.keys(ext).forEach(function(key){ |
|
DomUtils[key] = ext[key].bind(DomUtils); |
|
}); |
|
});
|
|
|