2022-09-06 19:09:25 +02:00
|
|
|
/**
|
|
|
|
* Utility functions all around strings.
|
|
|
|
*/
|
2022-09-20 19:11:36 +02:00
|
|
|
import type { MAC } from "../types";
|
2020-04-08 21:25:33 +02:00
|
|
|
|
2022-09-06 19:09:25 +02:00
|
|
|
/**
|
|
|
|
* Trims the given `string` and replaces multiple whitespaces by one space each.
|
|
|
|
*
|
|
|
|
* Can be used to make sure user input has a canonical form.
|
|
|
|
*
|
|
|
|
* @param str - `string` to normalize.
|
|
|
|
* @returns The normalized `string`.
|
|
|
|
*/
|
2022-07-22 17:10:39 +02:00
|
|
|
export function normalizeString(str: string): string {
|
2022-09-06 19:09:25 +02:00
|
|
|
return str.trim().replace(/\s+/g, " ");
|
2020-04-08 21:25:33 +02:00
|
|
|
}
|
|
|
|
|
2022-09-06 19:09:25 +02:00
|
|
|
/**
|
|
|
|
* Normalizes a {@link MAC} address so that it has a canonical format:
|
|
|
|
*
|
|
|
|
* The `MAC` address will be converted so that it is all uppercase with colon as the delimiter, e.g.:
|
|
|
|
* `12:34:56:78:9A:BC`.
|
|
|
|
*
|
|
|
|
* @param mac - `MAC` address to normalize.
|
|
|
|
* @returns The normalized `MAC` address.
|
|
|
|
*/
|
2022-07-22 17:10:39 +02:00
|
|
|
export function normalizeMac(mac: MAC): MAC {
|
2020-04-08 21:25:33 +02:00
|
|
|
// parts only contains values at odd indexes
|
2022-08-23 20:08:53 +02:00
|
|
|
const parts = mac
|
|
|
|
.toUpperCase()
|
|
|
|
.replace(/[-:]/g, "")
|
|
|
|
.split(/([A-F0-9]{2})/);
|
2020-04-08 21:25:33 +02:00
|
|
|
|
|
|
|
const macParts = [];
|
|
|
|
|
|
|
|
for (let i = 1; i < parts.length; i += 2) {
|
|
|
|
macParts.push(parts[i]);
|
|
|
|
}
|
|
|
|
|
2022-08-23 20:08:53 +02:00
|
|
|
return macParts.join(":") as MAC;
|
2020-04-08 21:25:33 +02:00
|
|
|
}
|