mirror of
https://github.com/SamEyeBam/animate.git
synced 2025-09-28 23:15:25 +00:00
larry babby and threejs for glsl
This commit is contained in:
28
webGl/my-threejs-test/node_modules/csso/lib/clean/index.js
generated
vendored
Normal file
28
webGl/my-threejs-test/node_modules/csso/lib/clean/index.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
import { walk } from 'css-tree';
|
||||
import Atrule from './Atrule.js';
|
||||
import Comment from './Comment.js';
|
||||
import Declaration from './Declaration.js';
|
||||
import Raw from './Raw.js';
|
||||
import Rule from './Rule.js';
|
||||
import TypeSelector from './TypeSelector.js';
|
||||
import WhiteSpace from './WhiteSpace.js';
|
||||
|
||||
const handlers = {
|
||||
Atrule,
|
||||
Comment,
|
||||
Declaration,
|
||||
Raw,
|
||||
Rule,
|
||||
TypeSelector,
|
||||
WhiteSpace
|
||||
};
|
||||
|
||||
export default function(ast, options) {
|
||||
walk(ast, {
|
||||
leave(node, item, list) {
|
||||
if (handlers.hasOwnProperty(node.type)) {
|
||||
handlers[node.type].call(this, node, item, list, options);
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
Reference in New Issue
Block a user