tweak: fix "all" option

This commit is contained in:
KernelDeimos
2024-12-02 11:45:13 -05:00
parent aadb261b29
commit 0a1be464d1

View File

@@ -625,13 +625,8 @@ const main = async () => {
}
if ( action.action === 'all' ) {
limit = await enq.prompt({
type: 'input',
name: 'limit',
message: 'Enter limit:'
});
i = 1;
limit = Number(limit.limit);
limit = Infinity;
}
const { definitions } = js_processor.process(lines);