mirror of
https://github.com/SamEyeBam/animate.git
synced 2025-12-18 03:14:40 +00:00
larry babby and threejs for glsl
This commit is contained in:
16
webGl/my-threejs-test/node_modules/htmlnano/lib/modules/custom.mjs
generated
vendored
Normal file
16
webGl/my-threejs-test/node_modules/htmlnano/lib/modules/custom.mjs
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
/** Meta-module that runs custom modules */
|
||||
export default function custom(tree, options, customModules) {
|
||||
if (! customModules) {
|
||||
return tree;
|
||||
}
|
||||
|
||||
if (! Array.isArray(customModules)) {
|
||||
customModules = [customModules];
|
||||
}
|
||||
|
||||
customModules.forEach(customModule => {
|
||||
tree = customModule(tree, options);
|
||||
});
|
||||
|
||||
return tree;
|
||||
}
|
||||
Reference in New Issue
Block a user