feat: testers

This commit is contained in:
cha0s 2021-01-28 15:43:57 -06:00
parent 5d9b5de565
commit 30c29a60ad
2 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import globals from './globals';
export {default as Actions} from './actions';
export * from './builders';
export * from './testers';
export {default as compile} from './compilers/compile';
export {default as Context} from './context';

View File

@ -0,0 +1,3 @@
export const isInvocation = (op) => 'invoke' === op.type;
export const isKey = (op) => 'key' === op.type;