@stamp/check-compose
v1.0.3
Published
Command line tool to test your 'compose' function implementation
Downloads
10
Readme
check-compose
Command line tool to test your 'compose' function implementation
Install
$ npm i -g @stamp/check-compose
Usage
Command line
$ check-compose path/to/compose.js
Programmatically
import checkCompose from 'check-compose';
checkCompose(myComposeFunction).then(({failures}) => {
console.error(failures.join('\n'));
});