File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ module.exports = exports = function define(strategies) {
1111
1212// strategy exports
1313
14- exports . override = function override ( functions ) {
14+ exports . callable = exports . override = function override ( functions ) {
1515 var args = argsToArray ( arguments ) . slice ( 1 ) ;
1616 var fn = functions . slice ( ) . pop ( ) ;
1717 if ( isFunction ( fn ) ) {
@@ -46,13 +46,15 @@ exports.compose = function compose(functions) {
4646} ;
4747
4848exports . async = {
49+ callable : asynchronize ( exports . callable ) ,
4950 override : asynchronize ( exports . override ) ,
5051 parallel : asynchronize ( exports . parallel ) ,
5152 pipe : asynchronize ( exports . pipe ) ,
5253 compose : asynchronize ( exports . compose ) ,
5354} ;
5455
5556exports . sync = {
57+ callable : asynchronize ( exports . callable ) ,
5658 override : synchronize ( exports . override ) ,
5759 sequence : synchronize ( exports . parallel ) ,
5860 parallel : synchronize ( exports . parallel ) ,
You can’t perform that action at this time.
0 commit comments