UNPKG
06_testutils
Version:
latest (1.1.0)
1.1.0
1.0.0
testUtils
06_testutils
/
main.js
12 lines
(9 loc)
•
198 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
function
getSum
(
num1, num2
) {
return
num1 + num2 }
export
function
parseLyric
(
lyric
) {
return
"格式化歌词"
}
export
function
getSub
(
num1, num2
) {
return
num1 - num2 }