Skip to content

Commit

Permalink
chore: clean-up implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Sep 25, 2024
1 parent a958397 commit 4627cfc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
> var x = [ 1, 1, 0, 0 ];
> var out = [ false, null, false, null, false, null, false, null ];
> var arr = {{alias}}.assign( x, out, 2, 0, isPositive )
[ false, null, false, null, false, null, true, null ]
[ false, null, ..., true, null ]
> var bool = ( arr === out )
true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ function accessors( x, y, stride, offset, predicate, thisArg ) {
*
* var y = [ false, null, false, null, false, null, false, null ];
* var out = assign( x, y, 2, 0, isPositive );
* // returns [ false, null, false, null, false, null, true, null ]
* // returns [ false, null, ..., true, null ]
*
* var bool = ( y === out );
* // returns true
Expand Down

0 comments on commit 4627cfc

Please sign in to comment.