ywc-npm-utils 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +5 -0
  2. package/package.json +11 -0
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ // index.js
2
+ export function sayHello(name){
3
+ return `Hello ${name}`
4
+ }
5
+ module.exports = {sayHello}
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "ywc-npm-utils",
3
+ "version": "1.0.0",
4
+ "description": "前端通用工具函数集合",
5
+ "main": "index.js",
6
+ "scripts": {},
7
+ "keywords": ["utils", "前端工具", "js工具函数"],
8
+ "author": "yuanwenchao",
9
+ "license": "MIT",
10
+ "files": ["index.js"]
11
+ }