Skip to content

Commit

Permalink
Merge branch 'master' of github.com:hyoo-ru/mam_mol
Browse files Browse the repository at this point in the history
  • Loading branch information
jin committed Dec 9, 2023
2 parents e99f429 + b3dafbf commit 511a26e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/pipe/pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ namespace $ {
return $mol_data_setup(
function( this: any, input : $mol_type_param< Funcs[0] , 0 > ) {
let value : any = input
for( const func of funcs as any ) value = $mol_func_is_class( func ) ? new func( value ) : func.call( this, value )
for( const func of funcs ) value = $mol_func_is_class( func ) ? new func( value ) : ( func as any ).call( this, value )
return value as $mol_type_result<
$mol_type_foot< Funcs >
>
Expand Down

0 comments on commit 511a26e

Please sign in to comment.