Skip to content

Commit 9c890ab

Browse files
author
quentin.legrand
committed
Fix pages property to always return current array reference ( #3898 )
fix prettier
1 parent a00f7ad commit 9c890ab

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/jspdf.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6043,7 +6043,9 @@ function jsPDF(options) {
60436043
getEncryptor: getEncryptor,
60446044
output: output,
60456045
getNumberOfPages: getNumberOfPages,
6046-
get pages () { return pages },
6046+
get pages() {
6047+
return pages;
6048+
},
60476049
out: out,
60486050
f2: f2,
60496051
f3: f3,

0 commit comments

Comments
 (0)