We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8932bcf commit aa41707Copy full SHA for aa41707
asLogic.test.js
@@ -1,7 +1,7 @@
1
import { asLogicSync, asLogicAsync } from './asLogic.js'
2
3
const module = {
4
- hello: (name = 'World', last = '') => `Hello, ${name ?? 'World'}${last.length ? ' ' : ''}${last}!`
+ hello: (name = 'World', last = '') => `Hello, ${name || 'World'}${last.length ? ' ' : ''}${last}!`
5
}
6
7
describe('asLogicSync', () => {
0 commit comments