Skip to content

Commit

Permalink
chore@small
Browse files Browse the repository at this point in the history
  • Loading branch information
Deyan Totev committed Jan 15, 2024
1 parent 6d365c4 commit e0c07ab
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 10 deletions.
2 changes: 0 additions & 2 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17513,8 +17513,6 @@ import { type } from './type.js'

export function values(obj){
if (type(obj) !== 'Object') return []

if(!obj || typeof obj !== 'object') return []
return Object.values(obj)
}
```
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16206,8 +16206,6 @@ import { type } from './type.js'

export function values(obj){
if (type(obj) !== 'Object') return []

if(!obj || typeof obj !== 'object') return []
return Object.values(obj)
}
```
Expand Down
1 change: 0 additions & 1 deletion dist/rambda.js
Original file line number Diff line number Diff line change
Expand Up @@ -2336,7 +2336,6 @@ function unwind(property, obj) {

function values(obj) {
if (type(obj) !== 'Object') return [];
if (!obj || typeof obj !== 'object') return [];
return Object.values(obj);
}

Expand Down
2 changes: 1 addition & 1 deletion dist/rambda.umd.js

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions source/values.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@ import { type } from './type.js'

export function values(obj){
if (type(obj) !== 'Object') return []

if(!obj || typeof obj !== 'object') return []
return Object.values(obj)
}
2 changes: 0 additions & 2 deletions src/values.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@ import { type } from './type.js'

export function values(obj){
if (type(obj) !== 'Object') return []

if(!obj || typeof obj !== 'object') return []
return Object.values(obj)
}

0 comments on commit e0c07ab

Please sign in to comment.