Skip to content

Commit

Permalink
refactor: use stdlib package to sum three numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Nov 21, 2023
1 parent d3f4b2f commit b0552be
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions lib/node_modules/@stdlib/utils/curry-right/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,10 @@
// MODULES //

var tape = require( 'tape' );
var add = require( '@stdlib/math/base/ops/add3' );
var curryRight = require( './../lib' );


// FUNCTIONS //

function add( x, y, z ) {
return x + y + z;
}


// TESTS //

tape( 'main export is a function', function test( t ) {
Expand Down

0 comments on commit b0552be

Please sign in to comment.