Skip to content

Commit

Permalink
Stray STYLEGUIDE.md conformance fix here
Browse files Browse the repository at this point in the history
Applies to #429
  • Loading branch information
Martii committed Nov 18, 2014
1 parent 06e7fc8 commit 97fc8f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controllers/scriptStorage.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ if (isPro) {
});
}

function getInstallName (aReq) {
function getInstallName(aReq) {
return aReq.params.username + '/' + aReq.params.scriptname;
}
exports.getInstallName = getInstallName;

function caseInsensitive (aInstallName) {
function caseInsensitive(aInstallName) {
return new RegExp('^' + aInstallName.replace(/([.?*+^$[\]\\(){}|-])/g, "\\$1")
+ '$', 'i');
}
Expand Down

0 comments on commit 97fc8f1

Please sign in to comment.