Skip to content

Commit

Permalink
faster uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
davehorton committed Dec 28, 2022
1 parent 9f5b1df commit 6b85738
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion lib/BaseClient.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const bencode = require('bencode');
const v4 = require('random-uuid');
const v4 = require('uuid-random');
const Emitter = require('events').EventEmitter;
const RtpEngineError = require('./error');
const { getRtpEngineNameForCommand } = require('./constants');
Expand Down
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rtpengine-client",
"version": "0.4.10",
"version": "0.4.11",
"description": "node client for rtpengine daemon",
"main": "index.js",
"scripts": {
Expand All @@ -19,7 +19,7 @@
},
"dependencies": {
"bencode": "^2.0.3",
"random-uuid": "^1.0.2",
"uuid-random": "^1.3.2",
"ws": "^7.4.4"
},
"keywords": [
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1042,11 +1042,6 @@
"resolved" "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"
"version" "2.1.1"

"random-uuid@^1.0.2":
"integrity" "sha512-WcfhSG5bcJg9M0Fv7R6ISs/BqCrZqUAiGtpYrIsX/8kV/afx02pehG9f8Awszy/rTKqZNidHMc4oKdIzI21olg=="
"resolved" "https://registry.npmjs.org/random-uuid/-/random-uuid-1.0.2.tgz"
"version" "1.0.2"

"regexp.prototype.flags@^1.3.0", "regexp.prototype.flags@^1.4.3":
"integrity" "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA=="
"resolved" "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz"
Expand Down Expand Up @@ -1299,6 +1294,11 @@
dependencies:
"punycode" "^2.1.0"

"uuid-random@^1.3.2":
"integrity" "sha512-UOzej0Le/UgkbWEO8flm+0y+G+ljUon1QWTEZOq1rnMAsxo2+SckbiZdKzAHHlVh6gJqI1TjC/xwgR50MuCrBQ=="
"resolved" "https://registry.npmjs.org/uuid-random/-/uuid-random-1.3.2.tgz"
"version" "1.3.2"

"v8-compile-cache@^2.0.3":
"integrity" "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA=="
"resolved" "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz"
Expand Down

0 comments on commit 6b85738

Please sign in to comment.