Socket
Book a DemoInstallSign in
Socket

@drieam/class-default-properties

Package Overview
Dependencies
Maintainers
3
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@drieam/class-default-properties

creates default properties base on class arguments

latest
Source
npmnpm
Version
4.12.1
Version published
Maintainers
3
Created
Source

npm

@drieam/class-default-properties

The plugin for transform properties of class which has parent class.

Table of Contents

Why need this

When we use Babel to support class properties. Let's see the follow case:

class P {
  value = 'value In P'
  constructor(obj) {
    Object.assign(this, obj)
  }
}
class S extends P {
  val = 'value in S'
}

console.log(new S({ val: 'cus' }).val) // >>> cus 

Options

  • condType (default: 'typeofUndefined') 'typeofUndefined' | 'in' | 'hasOwnProperty'
    • 'typeofUndefined'
      this.val = typeof this.val !== 'undefined' ? this.val : 'value in S'
    • 'in'
      this.val = 'val' in this ? this.val : 'value in S'
    • 'hasOwnProperty'
      this.val = this.hasOwnProperty('val') ? this.val : 'value in S'

Note

{
  "plugins": [
    // NOTE: the order is important
    "class-properties-default-value",
    "transform-class-properties"
  ]
}

This project is an extension of (babel-plugin-class-properties-default-value)[https://github.com/imcuttle/babel-plugin-class-properties-default-value]

Keywords

babel

FAQs

Package last updated on 21 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.