Remove trailing whitespace

This commit is contained in:
copy 2016-01-01 17:50:13 +01:00
parent 33285fc520
commit 9357484862
4 changed files with 28 additions and 28 deletions

View file

@ -84,7 +84,7 @@ window.onload = function()
// https://gist.github.com/creationix/2502704
// Implement bash string escaping.
function bashEscape(arg)
function bashEscape(arg)
{
return "'" + arg.replace(/'+/g, function (val) {
return "'" + val.replace(/'/g, "\\'") + "'";