mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
doc: sort import order
PR-URL: https://github.com/nodejs/node/pull/46847 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
parent
d2d95a314f
commit
9562c20bc9
@ -178,8 +178,8 @@ console.log(Certificate.verifySpkac(Buffer.from(spkac)));
|
||||
```
|
||||
|
||||
```cjs
|
||||
const { Certificate } = require('node:crypto');
|
||||
const { Buffer } = require('node:buffer');
|
||||
const { Certificate } = require('node:crypto');
|
||||
|
||||
const spkac = getSpkacSomehow();
|
||||
console.log(Certificate.verifySpkac(Buffer.from(spkac)));
|
||||
@ -292,8 +292,8 @@ console.log(cert.verifySpkac(Buffer.from(spkac)));
|
||||
```
|
||||
|
||||
```cjs
|
||||
const { Certificate } = require('node:crypto');
|
||||
const { Buffer } = require('node:buffer');
|
||||
const { Certificate } = require('node:crypto');
|
||||
|
||||
const cert = Certificate();
|
||||
const spkac = getSpkacSomehow();
|
||||
|
Loading…
Reference in New Issue
Block a user