Skip to content

Commit 49aee1a

Browse files
committed
refactor: update ??= to ||=
1 parent ba03fac commit 49aee1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BootstrapBlazor/Components/Typed/Typed.razor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import Typed from '../../lib/typedjs/typed.module.js'
33

44
const getOptions = (text, invoke, options, callbacks) => {
5-
options ??= {};
5+
options ||= {};
66

77
if (text) {
88
options.strings = [text];

0 commit comments

Comments
 (0)