6 lines
157 B
TypeScript
6 lines
157 B
TypeScript
|
|
export class ParseString {
|
||
|
|
public static parseTime(time: string): string {
|
||
|
|
return time.split('.').join(':').substring(0, time.lastIndexOf(':'));
|
||
|
|
}
|
||
|
|
}
|