We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8866720 commit 1107e7cCopy full SHA for 1107e7c
javascript/ql/src/semmle/javascript/NPM.qll
@@ -233,7 +233,7 @@ class ContributorInfo extends JSONValue {
233
}
234
235
/** Gets the contributor's homepage URL. */
236
- string getURL() {
+ string getUrl() {
237
result = this.(JSONObject).getPropStringValue("url") or
238
result = parseInfo(3)
239
@@ -249,7 +249,7 @@ class RepositoryInfo extends JSONObject {
249
string getType() { result = getPropStringValue("type") }
250
251
/** Gets the repository URL. */
252
- string getURL() { result = getPropStringValue("url") }
+ string getUrl() { result = getPropStringValue("url") }
253
254
255
/**
0 commit comments