The time string to be converted. The string should be in the format "HH:MM:SS".
An array of numbers representing the hours, minutes, and seconds.
This function is part of the Time Utilities library.
Will throw an error if the input string is not in the correct format.
const timeArray = timeStringToArray("12:34:56");
console.log(timeArray); // Output: [12, 34, 56]
Generated using TypeDoc
Converts a time string into an array of numbers.