File tree 1 file changed +4
-4
lines changed
src/Transpiler/Backends/JS
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
// generated by axl
2
2
3
- const __plus__int = ( ...args ) => Math . round ( __plus__float ( args ) ) ;
3
+ const __plus__int = ( ...args ) => Math . round ( __plus__float ( ... args ) ) ;
4
4
const __plus__float = ( ...args ) => args . reduce ( ( acc , curr ) => acc + curr ) ;
5
5
6
- const __minus__int = ( ...args ) => Math . round ( __minus__float ( args ) ) ;
6
+ const __minus__int = ( ...args ) => Math . round ( __minus__float ( ... args ) ) ;
7
7
const __minus__float = ( ...args ) => args . reduce ( ( acc , curr ) => acc - curr ) ;
8
8
9
- const __multiply__int = ( ...args ) => Math . round ( __multiply__float ( args ) ) ;
9
+ const __multiply__int = ( ...args ) => Math . round ( __multiply__float ( ... args ) ) ;
10
10
const __multiply__float = ( ...args ) => args . reduce ( ( acc , curr ) => acc * curr ) ;
11
11
12
- const __divide__int = ( ...args ) => Math . round ( __divide__float ( args ) ) ;
12
+ const __divide__int = ( ...args ) => Math . round ( __divide__float ( ... args ) ) ;
13
13
const __divide__float = ( ...args ) => args . reduce ( ( acc , curr ) => acc / curr ) ;
14
14
15
15
const __str = ( ...args ) => args . reduce ( ( acc , curr ) => acc + curr ) ;
You can’t perform that action at this time.
0 commit comments