Skip to content

Commit d7d3037

Browse files
chore: add predicate function to repl.txt
1 parent baced22 commit d7d3037

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

lib/node_modules/@stdlib/dstructs/fifo/docs/repl.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@
9797

9898
Examples
9999
--------
100+
> function predicate( v ) { return v > 0; };
100101
> var q = {{alias}}();
101102
> q.push( 1 ).push( 2 ).push( 3 );
102103
> q.every( predicate )

lib/node_modules/@stdlib/dstructs/fifo/test/test.set.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ var FIFO = require( './../lib' );
2828

2929
// TESTS //
3030

31-
3231
tape( 'main export is a function', function test( t ) {
3332
t.ok( true, __filename );
3433
t.strictEqual( typeof FIFO, 'function', 'main export is a function' );

0 commit comments

Comments
 (0)