Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
Signing verification utilities
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Seal
Building blocks
Signing verification utilities
Merge requests
!92
qrcode nodejs change to index.js
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
qrcode nodejs change to index.js
debug-qrcode
into
master
Overview
0
Commits
3
Pipelines
2
Changes
2
Merged
Zdravko Iliev
requested to merge
debug-qrcode
into
master
1 year ago
Overview
0
Commits
3
Pipelines
2
Changes
2
Expand
0
0
Merge request reports
Compare
master
version 1
235228a5
1 year ago
master (base)
and
latest version
latest version
9fe19c2d
3 commits,
1 year ago
version 1
235228a5
2 commits,
1 year ago
2 files
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
dist/utils/qrCodeTemplateUtils.js
+
1
−
1
Options
@@ -173,7 +173,7 @@ const generateQrCode = (text, qrCodeOptions, templateOptions) => {
* @returns
*/
const
generateNodeJSQrCode
=
(
defaultOptions
,
qrCodeOptions
,
templateOptions
)
=>
__awaiter
(
void
0
,
void
0
,
void
0
,
function
*
()
{
const
QRCodeNodeJS
=
yield
Promise
.
resolve
().
then
(()
=>
__importStar
(
require
(
"
easyqrcodejs-nodejs
"
)));
const
QRCodeNodeJS
=
yield
Promise
.
resolve
().
then
(()
=>
__importStar
(
require
(
"
easyqrcodejs-nodejs
/index.js
"
)));
defaultOptions
[
"
correctLevel
"
]
=
QRCodeNodeJS
.
CorrectLevel
[
qrCodeOptions
.
correctionLevel
];
// L, M, Q, H
const
qrcode
=
new
QRCodeNodeJS
.
default
(
defaultOptions
);
Loading