Skip to content

Commit

Permalink
fix(javascript): prefix with node: for node packages (#3608)
Browse files Browse the repository at this point in the history
  • Loading branch information
atinux committed Aug 28, 2024
1 parent d822b97 commit f8b7a77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{#nodeSearchHelpers}}
import {createHmac} from 'crypto';
import {createHmac} from 'node:crypto';
{{/nodeSearchHelpers}}

import {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import { GenerateSecuredApiKeyOptions, GetSecuredApiKeyRemainingValidityOptions
{{/isSearchClient}}

{{#nodeSearchHelpers}}
import {createHmac} from 'crypto';
import {createHmac} from 'node:crypto';
{{/nodeSearchHelpers}}

/**
Expand Down

0 comments on commit f8b7a77

Please sign in to comment.