1.0.0 • Published 2 years ago

zhqnodetools v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

包的说明文档

我们所创建的这个包的 README.md 文档中,会包含以下6 项内容:安装方式、导入方式、返回名称函数、返回年龄函数、开源协议

安装

npm install node-tools

导入

const node_tools = require('node-tools')

定义返回名称函数

function name_fun(name){
    return '我的名字叫'+name;
}

定义返回年龄函数

function age_fun(age){
    return '年纪'+age;
}