substring

This commit is contained in:
Bluepr1nt
2017-04-04 22:02:27 +02:00
parent f6d82a8954
commit 0824daf2d6
4 changed files with 4 additions and 4 deletions
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -99,7 +99,7 @@ function toData(r) {
return num;
}
function timeToData(r) {
var times = r.time;
var times = r.time.substring(11, 18);
console.log('Parsed Time:', times);
return times;
}
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -54,7 +54,7 @@ function toData(r:any){
}
function timeToData(r:any){
let times = r.time;
let times = r.time.substring(11,18);
console.log('Parsed Time:', times);
return times;
}