上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 21 下一页
摘要: code/manifest.json { "manifest_version": 3, "name": "Code Tool", "description": "encode and decode string", "version": "1.0", "action": { "default_pop 阅读全文
posted @ 2023-02-17 11:44 箫笛 阅读(53) 评论(0) 推荐(0) 编辑
摘要: getCustomizedObject /** * @number: the count of object attribute * @prefix: the object attribute prefix string * @value: the value of each attribute, 阅读全文
posted @ 2023-02-17 10:54 箫笛 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 1. 正整数 正则表达式:/^(?!0)[0-9]+$/ 不以0开头 function isInteger(value) { return /^(?!0)[0-9]+$/.test(value); } 2. 非0数 正则表达式:/^\-?0\.[0-9]*[1-9]+[0-9]*$|^\-?(?!0 阅读全文
posted @ 2023-02-17 10:31 箫笛 阅读(55) 评论(0) 推荐(0) 编辑
摘要: async/await其实是生成器的语法糖,async用于声明一个函数是异步的,而await用于等待一个异步方法执行完成,并且await只能出现在async函数中。 1. async 函数 async函数返回一个Promise对象,因此可以使用Promise对象的相关方法去进 一步处理async函数 阅读全文
posted @ 2023-02-16 20:32 箫笛 阅读(84) 评论(0) 推荐(0) 编辑
摘要: Promise是异步编程的一种解决方案,它是一个对象,可以获取异步操作的消息,它解决了异步编程回调函数的地狱回调问题。 所谓Promise,简单说就是一个容器,里面保存着某个未来才会结束的事件(通常是一个异步操作)的结果。Promise提供了 统一的API,可以方便的处理各种异步问题。 1. Pro 阅读全文
posted @ 2023-02-16 17:40 箫笛 阅读(35) 评论(0) 推荐(0) 编辑
摘要: initDSRProject.sh #!/usr/bin/bash # load utils . ./util/utils.sh . ./util/fileUtils.sh . ./util/gitUtils.sh # set project related info projectName="ro 阅读全文
posted @ 2023-02-15 14:51 箫笛 阅读(4) 评论(0) 推荐(0) 编辑
摘要: syncMockJson.sh #!/usr/bin/bash # load utils . ./util/utils.sh . ./util/fileUtils.sh . ./util/gitUtils.sh # config directory, file path and branch ### 阅读全文
posted @ 2023-02-15 14:35 箫笛 阅读(9) 评论(0) 推荐(0) 编辑
摘要: Web workders的规范让javascript在后台运行脱离了UI线程,从而解决了大量计算阻塞UI线程导致卡死的问题。 在Web workers没有出现之前,我们可以使用window.setTimeout 异步方式将计算包裹其中,来解决这种问题。 1. 使用 Web Workers Web W 阅读全文
posted @ 2023-02-14 17:39 箫笛 阅读(90) 评论(0) 推荐(0) 编辑
摘要: shell-dsr/cron.sh #!/usr/bin/bash # execute shell script ################################################### # load utils . ./util/utils.sh declare -A 阅读全文
posted @ 2023-02-14 16:23 箫笛 阅读(34) 评论(0) 推荐(0) 编辑
摘要: shell-dsr/utils.sh #!/usr/bin/bash # echo message with color ######################################################## function echoError { echo -e "\0 阅读全文
posted @ 2023-02-14 16:15 箫笛 阅读(77) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 21 下一页