ソースを参照

:memo:continuous updating

striveDJiang 8 年 前
コミット
13edca5326
1 ファイル変更18 行追加18 行削除
  1. 18 18
      README.md

+ 18 - 18
README.md

@@ -3,6 +3,14 @@ JavaScript-utils
 
 > JavaScript工具函数库
 
+## string
+* [changeCase - 大小写转换](https://github.com/striveDJiang/JavaScript-utils/blob/master/string/changeCase.js)
+* [removeSpace - 字符串去除空格](https://github.com/striveDJiang/JavaScript-utils/blob/master/string/removeSpace.js)
+* [stringReplace - 字符串替换](https://github.com/striveDJiang/JavaScript-utils/blob/master/string/stringReplace.js)
+* [stringFormat - 格式化字符串](https://github.com/striveDJiang/JavaScript-utils/blob/master/string/stringFormat.js)
+* [repeatCopy - 字符串重复复制](https://github.com/striveDJiang/JavaScript-utils/blob/master/string/repeatCopy.js)
+* [digitUppercase - 现金额转大写](https://github.com/striveDJiang/JavaScript-utils/blob/master/string/digitUppercase.js)
+
 ## array
 * [arrayDisorder - 打乱数组顺序](https://github.com/striveDJiang/JavaScript-utils/blob/master/array/arrayDisorder.js)
 * [arrayEqual - 判断两个数组是否相等](https://github.com/striveDJiang/JavaScript-utils/blob/master/array/arrayEqual.js)
@@ -15,22 +23,22 @@ JavaScript-utils
 * [maxArr - 找出数组中的最大值(数字类型的数组)](https://github.com/striveDJiang/JavaScript-utils/blob/master/array/maxArr.js)
 * [minArr - 找出数组中的最小值(数字类型的数组)](https://github.com/striveDJiang/JavaScript-utils/blob/master/array/minArr.js)
 
-## string
-* [changeCase - 大小写转换](https://github.com/striveDJiang/JavaScript-utils/blob/master/string/changeCase.js)
-* [removeSpace - 字符串去除空格](https://github.com/striveDJiang/JavaScript-utils/blob/master/string/removeSpace.js)
-* [stringReplace - 字符串替换](https://github.com/striveDJiang/JavaScript-utils/blob/master/string/stringReplace.js)
-* [stringFormat - 格式化字符串](https://github.com/striveDJiang/JavaScript-utils/blob/master/string/stringFormat.js)
-* [repeatCopy - 字符串重复复制](https://github.com/striveDJiang/JavaScript-utils/blob/master/string/repeatCopy.js)
-* [digitUppercase - 现金额转大写](https://github.com/striveDJiang/JavaScript-utils/blob/master/string/digitUppercase.js)
+## function
+* [debounce - 函数防抖](https://github.com/striveDJiang/JavaScript-utils/blob/master/function/debounce.js)
+* [throttle - 函数节流](https://github.com/striveDJiang/JavaScript-utils/blob/master/function/throttle.js)
 
 ## object
 * [dataType - 数据类型判断](https://github.com/striveDJiang/JavaScript-utils/blob/master/object/dataType.js)
 * [deepClone - 深拷贝,支持常见类型](https://github.com/striveDJiang/JavaScript-utils/blob/master/object/deepClone.js)
 * [isEmptyObject - 判断obj是否为空](https://github.com/striveDJiang/JavaScript-utils/blob/master/object/isEmptyObject.js)
 
-## function
-* [debounce - 函数防抖](https://github.com/striveDJiang/JavaScript-utils/blob/master/function/debounce.js)
-* [throttle - 函数节流](https://github.com/striveDJiang/JavaScript-utils/blob/master/function/throttle.js)
+## date
+* [formatPassTime - 格式化${startTime}距现在的已过时间](https://github.com/striveDJiang/JavaScript-utils/blob/master/date/formatPassTime.js)
+* [formatRemainTime - 格式化现在距${endTime}的剩余时间](https://github.com/striveDJiang/JavaScript-utils/blob/master/date/formatRemainTime.js)
+
+## random
+* [randomColor - 随机生成颜色](https://github.com/striveDJiang/JavaScript-utils/blob/master/random/randomColor.js)
+* [randomNum - 生成指定范围随机数](https://github.com/striveDJiang/JavaScript-utils/blob/master/random/randomNum.js)
 
 ## dom
 * [hasClass - 判断元素是否有某个class](https://github.com/striveDJiang/JavaScript-utils/blob/master/dom/hasClass.js)
@@ -44,14 +52,6 @@ JavaScript-utils
 * [offset - 获取一个元素的距离文档(document)的位置,类似jQ中的offset()](https://github.com/striveDJiang/JavaScript-utils/blob/master/bom/offset.js)
 * [isSupportWebP - 判断浏览器是否支持webP格式图片](https://github.com/striveDJiang/JavaScript-utils/blob/master/bom/isSupportWebP.js)
 
-## date
-* [formatPassTime - 格式化${startTime}距现在的已过时间](https://github.com/striveDJiang/JavaScript-utils/blob/master/date/formatPassTime.js)
-* [formatRemainTime - 格式化现在距${endTime}的剩余时间](https://github.com/striveDJiang/JavaScript-utils/blob/master/date/formatRemainTime.js)
-
-## random
-* [randomColor - 随机生成颜色](https://github.com/striveDJiang/JavaScript-utils/blob/master/random/randomColor.js)
-* [randomNum - 生成指定范围随机数](https://github.com/striveDJiang/JavaScript-utils/blob/master/random/randomNum.js)
-
 ## regexp
 * [isEmail - 判断是否为邮箱地址](https://github.com/striveDJiang/JavaScript-utils/blob/master/regexp/isEmail.js)
 * [isIdCard - 判断是否为身份证号](https://github.com/striveDJiang/JavaScript-utils/blob/master/regexp/isIdCard.js)