UNPKG
atitor
Version:
latest (0.1.1)
0.1.1
0.1.0
♏ 一款现代化 Markdown 编辑器
b3log.org/vditor
Vanessa219/vditor
atitor
/
src
/
ts
/
util
/
log.ts
7 lines
(6 loc)
•
192 B
text/typescript
View Raw
1
2
3
4
5
6
7
export
const
log
= (
method
:
string
,
content
:
string
,
type
:
string
,
print
:
boolean
) => {
if
(print) {
// @ts-ignore
console
.
log
(
`
${method}
-
${
type
}
:
${content}
`
); } };