Combine examples for cat

This commit is contained in:
kdiab 2024-09-21 11:01:00 -04:00
parent 25f762c393
commit c225b4719f
2 changed files with 28 additions and 1 deletions

View file

@ -1396,7 +1396,11 @@ export function slowcatPrime(...pats) {
* @example
* cat("e5", "b4", ["d5", "c5"]).note()
* // "<e5 b4 [d5 c5]>".note()
*
* @example
* // You can also use cat as a chained function like this:
* s("hh*4").cat(
* note("c4(5,8)")
* )
*/
export function cat(...pats) {
return slowcat(...pats);