스크립트 기반을 WebPack + Babel + TypeScript + Vue3으로 변경 #191

Merged
Hide_D merged 122 commits from ts_convert into devel 2021-09-09 01:00:43 +09:00
3 changed files with 7 additions and 5 deletions
Showing only changes of commit f609e2b628 - Show all commits
+2 -1
View File
@@ -5,7 +5,8 @@ import 'bootstrap';
import download from 'downloadjs';
import { unwrap } from "./util/unwrap";
import { isInteger } from 'lodash';
import { combineArray, errUnknown, getNpcColor, isBrightColor, numberWithCommas } from './common_legacy';
import { combineArray, errUnknown, getNpcColor, isBrightColor } from './common_legacy';
import { numberWithCommas } from "./util/numberWithCommas";
import { unwrap_any } from './util/unwrap_any';
import { BasicGeneralListResponse, InvalidResponse } from './defs';
import { formatTime } from './util/formatTime';
-4
View File
@@ -76,10 +76,6 @@ export function convColorValue(color: string): string {
}
export function numberWithCommas(x: number): string {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
//linkify가 불러와 있어야함
declare global {
interface Window {
+5
View File
@@ -0,0 +1,5 @@
export function numberWithCommas(x: number): string {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}