Skip to content

Commit aa41707

Browse files
committed
Agh, getting rid of "??" from the test since I support older runtimes
1 parent 8932bcf commit aa41707

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asLogic.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { asLogicSync, asLogicAsync } from './asLogic.js'
22

33
const module = {
4-
hello: (name = 'World', last = '') => `Hello, ${name ?? 'World'}${last.length ? ' ' : ''}${last}!`
4+
hello: (name = 'World', last = '') => `Hello, ${name || 'World'}${last.length ? ' ' : ''}${last}!`
55
}
66

77
describe('asLogicSync', () => {

0 commit comments

Comments
 (0)