-
Notifications
You must be signed in to change notification settings - Fork 142
Closed
Description
From @bakso on November 11, 2016 8:39
- VSCode Version:1.7.1
- OS Version:MacOS 10.11.6
Steps to Reproduce:
function formatBigNum(num) {
num = Number(num)
if (num < 10000) {
return num
}
return (num/10000).toString().replace(/(\.[\d]{1})\d+$/,"$1") + 'w '
}
let hbAnimIndex = 0;
let hbAnimNode = null;Copied from original issue: microsoft/vscode#15334
Metadata
Metadata
Assignees
Labels
No labels