Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| [ | |
| { | |
| "url": "http://money.cnn.com", | |
| "rss": "http://rss.cnn.com/rss/money_topstories.rss" | |
| }, | |
| { | |
| "url": "http://thehill.com", | |
| "rss": "http://thehill.com/rss/syndicator/19110" | |
| }, | |
| { |
/*
Read a ini file
[Section1]
Param1=value1
[Section2]
Param2=value2
| /** Function that count occurrences of a substring in a string; | |
| * @param {String} string The string | |
| * @param {String} subString The sub string to search for | |
| * @param {Boolean} [allowOverlapping] Optional. (Default:false) | |
| * | |
| * @author Vitim.us https://gist.github.com/victornpb/7736865/edit | |
| * @see Unit Test https://jsfiddle.net/Victornpb/5axuh96u/ | |
| * @see http://stackoverflow.com/questions/4009756/how-to-count-string-occurrence-in-string/7924240#7924240 | |
| */ | |
| function occurrences(string, subString, allowOverlapping) { |
| /* `XHTML, HTML4, HTML5 Reset | |
| ----------------------------------------------------------------------------------------------------*/ | |
| a, | |
| abbr, | |
| acronym, | |
| address, | |
| applet, | |
| article, | |
| aside, |