fix(curriculum): allow spreading "allSongs" in next line or space in step 9 of the music player project (#53035)

This commit is contained in:
Kashinath Patkar
2024-01-09 01:39:19 +05:30
committed by GitHub
parent 92d7c2cfd3
commit f3e25c90b2

View File

@@ -26,7 +26,7 @@ Inside the `userData` object create a `songs` property. For the value, spread `a
Your `userData` object should have a `songs` key set to `[...allSongs]`.
```js
assert.match(code, /songs\s*:\s*\[\.\.\.allSongs\],?/);
assert.match(code, /songs\s*:\s*\[\s*\.\.\.allSongs\s*\],?/);
```
# --seed--