Skip to content

Commit 8b88c52

Browse files
committed
Add trailing spaces.
1 parent 313812b commit 8b88c52

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

spec/fixtures/sources/commonjs-grouped/g1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ const functions = require("../../../../src/index");
22

33
exports.v1callable = functions.https.onCall((_data, _ctx) => {
44
return "PASS";
5-
})
5+
})
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
22
"name": "commonjs-grouped"
3-
}
3+
}

spec/fixtures/sources/commonjs-main/functions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ exports.v1http = functions.https.onRequest((_req, resp) => {
66

77
exports.v1callable = functions.https.onCall((_data, _ctx) => {
88
return "PASS";
9-
})
9+
})
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"name": "commonjs-main",
33
"main": "functions.js"
4-
}
4+
}

spec/fixtures/sources/commonjs-scheduled/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ const functions = require("../../../../src/index");
22

33
exports.scheduled = functions.pubsub.schedule('every 5 minutes').onRun((_context) => {
44
return "PASS";
5-
});
5+
});
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
22
"name": "commonjs-scheduled"
3-
}
3+
}

spec/fixtures/sources/commonjs/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ exports.v1http = functions.https.onRequest((_req, resp) => {
66

77
exports.v1callable = functions.https.onCall((_data, _ctx) => {
88
return "PASS";
9-
})
9+
})
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
22
"name": "commonjs"
3-
}
3+
}

spec/fixtures/sources/esm-ext/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ export const v1http = functions.https.onRequest((_req, resp) => {
66

77
export const v1callable = functions.https.onCall((_data, _ctx) => {
88
return "PASS";
9-
})
9+
})
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"name": "esm-ext",
33
"main": "index.mjs"
4-
}
4+
}

spec/fixtures/sources/esm-main/functions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ export const v1http = functions.https.onRequest((_req, resp) => {
66

77
export const v1callable = functions.https.onCall((_data, _ctx) => {
88
return "PASS";
9-
})
9+
})

spec/fixtures/sources/esm-main/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"name": "esm-main",
33
"main": "functions.js",
44
"type": "module"
5-
}
5+
}

spec/fixtures/sources/esm/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ export const v1http = functions.https.onRequest((_req, resp) => {
66

77
export const v1callable = functions.https.onCall((_data, _ctx) => {
88
return "PASS";
9-
})
9+
})
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"name": "esm",
33
"type": "module"
4-
}
4+
}

0 commit comments

Comments
 (0)