UNPKG
camellia-out
Version:
latest (1.0.0)
1.0.0
可以输出camellia,好像是谁的网名
camellia-out
/
src
/
sayCamellia.js
13 lines
(10 loc)
•
201 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
// src/sayCamellia.js
/** * 输出 "Camellia" 的函数 *
@returns
{string} "Camellia" */
function
sayCamellia
()
{
return
'Camellia'
; }
// 导出函数
module
.
exports
= sayCamellia;