superdough: native support for rest symbols - ~ in s
This commit is contained in:
parent
9b8761bc45
commit
3c3832dbce
1 changed files with 3 additions and 0 deletions
|
|
@ -481,6 +481,9 @@ export const superdough = async (value, t, hapDuration) => {
|
||||||
const onended = () => {
|
const onended = () => {
|
||||||
toDisconnect.forEach((n) => n?.disconnect());
|
toDisconnect.forEach((n) => n?.disconnect());
|
||||||
};
|
};
|
||||||
|
if (['-', '~'].includes(s)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (bank && s) {
|
if (bank && s) {
|
||||||
s = `${bank}_${s}`;
|
s = `${bank}_${s}`;
|
||||||
value.s = s;
|
value.s = s;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue