rename "assert" to "util"

This commit is contained in:
monoid 2021-10-10 01:24:31 +09:00
parent 1517b1ef2c
commit 5092540715
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
export function assertBoolean(condition: boolean, ...data: any[]){ export function assertBoolean(condition: boolean, ...data: any[]){
console.assert(condition,data); console.assert(condition,...data);
} }