Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
814aac27
Commit
814aac27
authored
1 month ago
by
Deucе
Browse files
Options
Downloads
Patches
Plain Diff
Add an explicit undefined in there too.
parent
3d3b621f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#7816
passed
1 month ago
Stage: build
Stage: test
Stage: cleanup
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
exec/tests/global/format.js
+4
-3
4 additions, 3 deletions
exec/tests/global/format.js
with
4 additions
and
3 deletions
exec/tests/global/format.js
+
4
−
3
View file @
814aac27
const
args
=
[
1
,
1.1
,
true
,
"
one
"
,
-
1
,
1
e9
,
null
];
const
args
=
[
1
,
1.1
,
true
,
"
one
"
,
-
1
,
1
e9
,
null
,
undefined
];
const
test
=
{
"
%s
"
:
"
1
"
,
...
...
@@ -20,8 +20,9 @@ const test = {
"
%6$u
"
:
"
1000000000
"
,
"
%7$u
"
:
"
0
"
,
"
%7$s
"
:
"
null
"
,
"
%7$s %s
"
:
"
null %s
"
,
"
%8$s
"
:
"
%8$s
"
,
"
%7$s %s
"
:
"
null undefined
"
,
"
%8$s %s
"
:
"
undefined %s
"
,
"
%9$s
"
:
"
%9$s
"
,
};
for
(
var
i
in
test
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment