Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 595 Bytes

string.md

File metadata and controls

36 lines (24 loc) · 595 Bytes

String

字符串集

randomId

随记 Id, 生成 10-12 位不等的字符串

randomId(); // 随机Id

randomColor

随记生成颜色

randomColor('rgba', 0.8); // 随机color

trim

字符串去空(制表符和换行符)

  • @name trim
  • @param {string} [str=''] 目标字符串
  • @param {string} [position="both"] 去除位置 left|right|both|center|all
trim(' s t r '); //s t r