Skip to content

Commit d2b9b0c

Browse files
chore: address commit comments for commit 1acd7fc
PR-URL: #7917 Closes: #7914 Co-authored-by: Philipp Burckhardt <[email protected]> Reviewed-by: Philipp Burckhardt <[email protected]> Signed-off-by: Philipp Burckhardt <[email protected]> Signed-off-by: Srinivas Batthula <[email protected]>
1 parent 4589cee commit d2b9b0c

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/utils/none-own-by/lib

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/utils/none-own-by/lib/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
* var noneOwnBy = require( '@stdlib/utils/none-own-by' );
2828
*
2929
* function isUnderage( age ) {
30-
* return age < 18;
30+
* return age < 18;
3131
* }
3232
*
3333
* var obj = {
34-
* a : 10,
35-
* b : 12,
36-
* c : 15
34+
* 'a': 10,
35+
* 'b': 12,
36+
* 'c': 15
3737
* };
3838
*
3939
* var bool = noneOwnBy( obj, isUnderage );

0 commit comments

Comments
 (0)