🔧 npm update
This commit is contained in:
8
node_modules/postcss/lib/declaration.js
generated
vendored
8
node_modules/postcss/lib/declaration.js
generated
vendored
@@ -3,6 +3,10 @@
|
||||
let Node = require('./node')
|
||||
|
||||
class Declaration extends Node {
|
||||
get variable() {
|
||||
return this.prop.startsWith('--') || this.prop[0] === '$'
|
||||
}
|
||||
|
||||
constructor(defaults) {
|
||||
if (
|
||||
defaults &&
|
||||
@@ -14,10 +18,6 @@ class Declaration extends Node {
|
||||
super(defaults)
|
||||
this.type = 'decl'
|
||||
}
|
||||
|
||||
get variable() {
|
||||
return this.prop.startsWith('--') || this.prop[0] === '$'
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Declaration
|
||||
|
||||
Reference in New Issue
Block a user