@@ -0,0 +1 @@
+export * from './modules/format'
@@ -0,0 +1,12 @@
+/**
+ * 示例: 用于为金额添加后缀单位展示
+ * @param money - 金额
+ * @returns {string}
+ */
+function formatMoney (money) {
+ return money + '万元'
+}
+
+export {
+ formatMoney
+{
+ "name": "@jy/util",
+ "version": "0.0.1",
+ "description": "剑鱼项目通用工具集",
+ "main": "index.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "keywords": [],
+ "author": "",
+ "license": "ISC"