allow _ as silence

This commit is contained in:
Felix Roos 2025-06-18 21:36:34 +02:00
parent 28cd7c1681
commit c751bb7e5f
No known key found for this signature in database
3 changed files with 4 additions and 2 deletions

View file

@ -28,6 +28,7 @@ let nope = (...args) => args[args.length - 1];
let lib = {};
lib['nope'] = nope;
lib['-'] = silence;
lib['_'] = silence;
lib['~'] = silence;
lib.curly = stepcat;
lib.square = (...args) => stepcat(...args).setSteps(1);