Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ R.add(date(1,2,3), date(1,2,3)) # float('nan)
- [ ] ascend
- [ ] assoc
- [ ] assocPath
- [x] binary
- [x] 0.2.0 binary
- [ ] bind
- [ ] both
- [ ] call
Expand Down Expand Up @@ -276,7 +276,7 @@ R.keys(c) # ['c'], because c does not call super().__init__()
R.keys({'a': 1, 'b': 2}) # ['a', 'b']
```

- [x] keysIn
- [x] 0.2.0 keysIn

Different from `keys`, `keysIn` will return all attributes of the object, including super class attributes and class static variables.

Expand Down Expand Up @@ -365,7 +365,7 @@ Python modulo on negative numbers has different behavior than JS.

- [ ] move
- [x] 0.1.2 multiply
- [x] nAry
- [x] 0.2.0 nAry
- [ ] negate
- [ ] none
- [x] 0.1.2 not
Expand Down Expand Up @@ -540,7 +540,7 @@ Partially supported
- [ ] tryCatch
- [ ] type
- [ ] unapply
- [x] unary
- [x] 0.2.0 unary
- [ ] uncurryN
- [ ] unfold
- [x] 0.1.2 union
Expand All @@ -567,7 +567,7 @@ R.values(obj) # [1, 2]
R.values({'a': 1, 'b': 2}) # [1, 2]
```

- [x] valuesIn
- [x] 0.2.0 valuesIn

Use `R.keysIn` to get the keys of an object.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# eg: 1.0.0, 1.0.1, 3.0.2, 5.0-beta, etc.
# You CANNOT upload two versions of your package with the same version number
# This field is REQUIRED
version="0.1.4",
version="0.2.0",

# The packages that constitute your project.
# For my project, I have only one - "pydash".
Expand Down