We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
separator
1 parent 33fdf9e commit c60e4b8Copy full SHA for c60e4b8
2 files changed
src/document_applier.ts
@@ -89,7 +89,9 @@ export class DocumentApplier {
89
separator: this.separator,
90
},
91
items => {
92
- this.separator = items.separator;
+ if (typeof items.separator === 'string') {
93
+ this.separator = items.separator;
94
+ }
95
resolve();
96
}
97
);
src/options.ts
@@ -64,7 +64,9 @@ function restoreOptions() {
64
separator: '\u200B',
65
66
67
- setSeparator(items.separator);
68
+ setSeparator(items.separator);
69
70
71
72
0 commit comments