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.
15 lines
322 B
15 lines
322 B
4 years ago
|
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);
|
||
|
});
|
||
|
});
|