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
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ isinstance(clone, Obj) # True
- [ ] cond
- [ ] construct
- [ ] constructN
- [x] converge
- [x] 0.1.4 converge
- [ ] count
- [x] 0.1.2 countBy
- [x] 0.1.2 curry
Expand Down Expand Up @@ -190,12 +190,12 @@ R.equals(float('nan'), float('nan')) # True
- [x] 0.1.2 F
- [x] 0.1.2 filter
- [x] 0.1.2 find
- [x] findIndex
- [x] findLast
- [x] findLastIndex
- [x] 0.1.4 findIndex
- [x] 0.1.4 findLast
- [x] 0.1.4 findLastIndex
- [x] 0.1.2 flatten
- [x] 0.1.2 flip
- [x] forEach
- [x] 0.1.4 forEach
- [ ] forEachObjIndexed
- [ ] fromPairs
- [x] 0.1.2 groupBy
Expand Down Expand Up @@ -236,7 +236,7 @@ R.isEmpty(None) # False

- [ ] isNil
- [x] 0.1.2 join
- [x] juxt
- [x] 0.1.4 juxt
- [x] 0.1.2 keys

```python
Expand Down Expand Up @@ -274,7 +274,7 @@ R.keys(c) # ['c'], because c does not call super().__init__()
```

- [ ] keysIn
- [x] last
- [x] 0.1.4 last
- [x] 0.1.2 lastIndexOf
- [ ] length
- [ ] lens
Expand Down Expand Up @@ -327,7 +327,7 @@ R.Min('A', None) # 'A', 'A' < 'None'
- [ ] minBy
- [ ] modify
- [ ] modifyPath
- [x] modulo
- [x] 0.1.4 modulo

Python modulo on negative numbers has different behavior than JS.

Expand Down Expand Up @@ -373,7 +373,7 @@ R.omit(['v1', 'v3'], obj) # {'v2': 2}
- [ ] partial
- [ ] partialObject
- [ ] partialRight
- [x] partition
- [x] 0.1.4 partition
- [x] 0.1.2 path
- [ ] pathEq
- [ ] pathOr
Expand Down Expand Up @@ -455,7 +455,7 @@ R.propEq(1, 'v1', {'v1': 1}) # True
- [ ] reduceWhile
- [x] 0.1.2 reject
- [ ] remove
- [x] repeat
- [x] 0.1.4 repeat
- [ ] replace
- [x] 0.1.2 reverse
- [ ] scan
Expand Down Expand Up @@ -497,7 +497,7 @@ R.subtract(date(1,2,3), date(1,2,3)) # float('nan)
- [x] 0.1.2 tap
- [ ] test
- [ ] thunkify
- [x] times
- [x] 0.1.4 times
- [ ] toLower
- [ ] toPairs
- [ ] toPairsIn
Expand Down Expand Up @@ -546,7 +546,7 @@ R.values({'a': 1, 'b': 2}) # [1, 2]
- [ ] valuesIn
- [ ] view
- [ ] when
- [x] where
- [x] 0.1.4 where

spec(first param) is prefer to be a dict.

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.2",
version="0.1.4",

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