Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 23 Oct 17:59
· 211 commits to main since this release
bef9e73

Patch Changes

  • 108970b: Remove keys from the object instead of setting them to undefined.

    const result = patch({
      left: { a: { a: 2 } },
      delta: { a: [null, 0, 0] }
    });
    // Previously result was
    // { a: undefined }
    // Now it is
    // {}