Normalize whitespace.

Convert source files to Unix EOL mode, convert .bat files to DOS EOL
mode, de-tabify and strip trailing whitespace.
This commit is contained in:
Markus F.X.J. Oberhumer
2016-08-19 13:40:31 +02:00
parent bd43d374dc
commit eeba56c81b
8 changed files with 274 additions and 274 deletions

View File

@ -17,7 +17,7 @@ Global Symbols
.. js:function:: endswith(str, cmp)
returns `true` if the end of the string `str` matches a the string `cmp` otherwise returns `false`
.. js:function:: escape(str)
Returns a string with backslashes before characters that need to be escaped(`\",\a,\b,\t,\n,\v,\f,\r,\\,\",\',\0,\xnn`).
@ -66,7 +66,7 @@ Global Symbols
.. js:function:: startswith(str, cmp)
returns `true` if the beginning of the string `str` matches the string `cmp`; otherwise returns `false`
.. js:function:: strip(str)
Strips white-space-only characters that might appear at the beginning or end of the given string and returns the new stripped string.