HELLO WORLD
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
A placeholder aims to pin nothing. |



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
记一:负什么气? | |
> 就你根本就不想着我 | |
~~记二:出走到了哪?~~ | |
~~成谜~~ | |
记三:回家了吗? | |
沙发上躺着呢 |
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
data = `D1 02:17.38 | |
D2 03:31.80 | |
D3 02:34.90 | |
D4 00:00.00 | |
D5 02:59.96 | |
D6 03:16.69 | |
D7 06:42.06 | |
D8 08:30.52 | |
D9 04:20.41` |
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
// 1. styleSheets | |
// The Document.styleSheets read-only property returns a StyleSheetList | |
// of CSSStyleSheet objects for stylesheets explicitly linked into or embedded in a document. | |
// 2. CSSStyleSheet objects | |
// 2.1. properties | |
// 2.1.1. cssRules | |
// 2.1.2. ownerRule | |
// 2.2. methods | |
// 2.2.1 deleteRule |
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
// 命令行短参数解析。 | |
// 移植于 <a href="https://github.com/python/cpython/blob/2.7/Lib/getopt.py">https://github.com/python/cpython/blob/2.7/Lib/getopt.py</a> | |
function getOpt(shortopts, argsArr){ | |
let opts = {}; | |
while(argsArr.length > 0 && argsArr[0].startsWith('-') && argsArr[0] != '-') { | |
if(argsArr[0] == '--' ) { | |
argsArr = argsArr.slice(1); | |
break; | |
} | |
if(argsArr[0].startsWith('--')){ |
NewerOlder