mylib

我的工具

As of 2023-12-07. See the latest version.

This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greasyfork.org/scripts/435697/1291651/mylib.js

Author
jii
Version
0.0.1.20231207041826
Created
2021-11-18
Updated
2023-12-07
Size
5.83 KB
License
N/A

增加无比重要的js回调圣经——sleep函数
function sleep(time){
return new Promise((resolve) => setTimeout(resolve, time));
}