摘要:
code/manifest.json { "manifest_version": 3, "name": "Code Tool", "description": "encode and decode string", "version": "1.0", "action": { "default_pop 阅读全文
摘要:
getCustomizedObject /** * @number: the count of object attribute * @prefix: the object attribute prefix string * @value: the value of each attribute, 阅读全文
摘要:
1. 正整数 正则表达式:/^(?!0)[0-9]+$/ 不以0开头 function isInteger(value) { return /^(?!0)[0-9]+$/.test(value); } 2. 非0数 正则表达式:/^\-?0\.[0-9]*[1-9]+[0-9]*$|^\-?(?!0 阅读全文