Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/spdx-expression-parse/scan.js')
-rw-r--r--node_modules/spdx-expression-parse/scan.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/node_modules/spdx-expression-parse/scan.js b/node_modules/spdx-expression-parse/scan.js
index d0567f494..b74fce2e2 100644
--- a/node_modules/spdx-expression-parse/scan.js
+++ b/node_modules/spdx-expression-parse/scan.js
@@ -70,14 +70,14 @@ module.exports = function (source) {
function documentRef () {
if (read('DocumentRef-')) {
var string = expectIdstring()
- return {type: 'DOCUMENTREF', string: string}
+ return { type: 'DOCUMENTREF', string: string }
}
}
function licenseRef () {
if (read('LicenseRef-')) {
var string = expectIdstring()
- return {type: 'LICENSEREF', string: string}
+ return { type: 'LICENSEREF', string: string }
}
}