Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
25
Frontend-Learner/node_modules/css-tree/lib/syntax/scope/value.js
generated
vendored
Normal file
25
Frontend-Learner/node_modules/css-tree/lib/syntax/scope/value.js
generated
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import getNode from './default.js';
|
||||
import expressionFn from '../function/expression.js';
|
||||
import varFn from '../function/var.js';
|
||||
|
||||
function isPlusMinusOperator(node) {
|
||||
return (
|
||||
node !== null &&
|
||||
node.type === 'Operator' &&
|
||||
(node.value[node.value.length - 1] === '-' || node.value[node.value.length - 1] === '+')
|
||||
);
|
||||
}
|
||||
|
||||
export default {
|
||||
getNode,
|
||||
onWhiteSpace(next, children) {
|
||||
if (isPlusMinusOperator(next)) {
|
||||
next.value = ' ' + next.value;
|
||||
}
|
||||
if (isPlusMinusOperator(children.last)) {
|
||||
children.last.value += ' ';
|
||||
}
|
||||
},
|
||||
'expression': expressionFn,
|
||||
'var': varFn
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue