Closed cherifGsoul closed 4 years ago
This fix adds the ability to define properties with null or undefined default value:
null
undefined
class Foo extends mixinObject() { static get props() { return { nullProp: { default: null }, undefinedProp: { default: undefined } }; } } var foo = new Foo(); foo.nullProp; // -> null foo.undefinedProp; // -> undefined
Closes #148
This fix adds the ability to define properties with
null
orundefined
default value:Closes #148