feat: nop

This commit is contained in:
cha0s 2020-06-25 09:53:39 -05:00
parent 65a21b6718
commit 10d3188d67
2 changed files with 6 additions and 0 deletions

View File

@ -50,6 +50,10 @@ export function behaviorTypes() {
}], }],
], ],
}, },
nop: {
type: 'void',
label: '- Nothing -',
},
parallel: { parallel: {
type: 'void', type: 'void',
label: 'Run $1 in parallel.', label: 'Run $1 in parallel.',

View File

@ -8,6 +8,8 @@ export default {
} }
}, },
nop: () => {},
parallel: (expressions, context) => { parallel: (expressions, context) => {
return (new Actions(expressions)).parallel(context); return (new Actions(expressions)).parallel(context);
}, },