This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -------------------------------------------- | |
| Version: 1.45.1 | |
| Commit: 5763d909d5f12fe19f215cbfdd29a91c0fa9208a | |
| Date: 2020-05-14T08:33:47.663Z | |
| Electron: 7.2.4 | |
| Chrome: 78.0.3904.130 | |
| Node.js: 12.8.1 | |
| V8: 7.8.279.23-electron.0 | |
| OS: Darwin x64 18.5.0 | |
| ------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://www.dropbox.com/sh/6lmj4kpgtuqelkv/_IO6R4Bk2q |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 定期执行一个函数, setInterval() 的改良版 | |
| * | |
| * @param fn{function}, 定期执行的函数 | |
| * @param INTERVAL{number}, fn 执行周期 | |
| * @param runAsap{boolean}, 设定 fn 是在调用 accurateInterval 时立即执行还是等 INTERVAL 过后执行 | |
| * | |
| * @return {object} | |
| * - timer: setTimeout id | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var keys = [ | |
| 'display', | |
| 'width', | |
| 'height', | |
| 'margin-top', | |
| '*margin-right', | |
| 'line-height', | |
| 'vertical-align', | |
| 'background-image', | |
| 'background-position', |