Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbarth committed Oct 9, 2023
1 parent 3636ac1 commit 4ca6ca7
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,10 @@ The certificate that will be used to check the signature will first be determine
Example:

```javascript
new SignedXml(
{
publicCert: client_public_pem,
getCertFromKeyInfo: () => null
}
);
new SignedXml({
publicCert: client_public_pem,
getCertFromKeyInfo: () => null,
});
```

You can use any dom parser you want in your code (or none, depending on your usage). This sample uses [xmldom](https://github.com/xmldom/xmldom), so you should install it first:
Expand Down

0 comments on commit 4ca6ca7

Please sign in to comment.