feat(tool): random port generator

This commit is contained in:
Corentin Thomasset 2022-04-13 13:55:41 +02:00
parent afac5664c8
commit 7c540f1208
No known key found for this signature in database
GPG key ID: 3103EB5E79496F9C
4 changed files with 47 additions and 1 deletions

View file

@ -0,0 +1,3 @@
import { randIntFromInterval } from '@/utils/random';
export const generatePort = () => randIntFromInterval(1024, 65535);