We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Version: "dot-prop-immutable": "^2.1.1"
Steps to reproduce:
Run the following expression:
dotProp.delete({a:5, b:undefined, c:undefined}, 'b')
Return Value:
{a: 5, b: undefined, c: undefined}
Expected Return Value:
{a: 5, c: undefined}