All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.lib.declaration.js Maven / Gradle / Ivy

There is a newer version: 8.4.49
Show newest version
'use strict'

let Node = require('./node')

class Declaration extends Node {
  constructor(defaults) {
    if (
      defaults &&
      typeof defaults.value !== 'undefined' &&
      typeof defaults.value !== 'string'
    ) {
      defaults = { ...defaults, value: String(defaults.value) }
    }
    super(defaults)
    this.type = 'decl'
  }

  get variable() {
    return this.prop.startsWith('--') || this.prop[0] === '$'
  }
}

module.exports = Declaration
Declaration.default = Declaration




© 2015 - 2024 Weber Informatics LLC | Privacy Policy