UNPKG
time-format-js
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Localized time formatting library.
time-format-js
/
src
/
util
/
debug.js
9 lines
(8 loc)
•
181 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
function
warn
(
msg
) {
console
.
error
(
`[BScroll warn]:
${msg}
`
) }
export
function
assert
(
condition, msg
) {
if
(!condition) {
throw
new
Error
((
'[BScroll] '
+ msg)) } }