Skip to content

Commit

Permalink
update block comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Harris-Miller committed Jun 18, 2024
1 parent 6e3a8ac commit 7cf2bbc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion source/isEmpty.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ import equals from './equals.js';
* R.isEmpty([1, 2, 3]); //=> false
* R.isEmpty([]); //=> true
* R.isEmpty(''); //=> true
* R.isEmpty(null); //=> false
* R.isEmpty(null); //=> true
* R.isEmpty(undefined); //=> true
* R.isEmpty({}); //=> true
* R.isEmpty({length: 0}); //=> false
* R.isEmpty(Uint8Array.from('')); //=> true
Expand Down
3 changes: 2 additions & 1 deletion source/isNotEmpty.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ import isEmpty from './isEmpty.js';
* R.isNotEmpty([1, 2, 3]); //=> true
* R.isNotEmpty([]); //=> false
* R.isNotEmpty(''); //=> false
* R.isNotEmpty(null); //=> true
* R.isNotEmpty(null); //=> false
* R.isNotEmpty(undefined); //=> false
* R.isNotEmpty({}); //=> false
* R.isNotEmpty({length: 0}); //=> true
* R.isNotEmpty(Uint8Array.from('')); //=> false
Expand Down

0 comments on commit 7cf2bbc

Please sign in to comment.