Repo Added
31 Jan 2019 09:07PM UTC
|
Total Files
8
|
# Builds
1432
Last
|
Badge
README BADGES
|
push
travis-ci-com
3575 of 4710 relevant lines covered (75.9%)
240.37 hits per line
Coverage | ∆ | File | Lines | Relevant | Covered | Missed | Hits/Line |
---|
Builds | Branch | Coverage | Commit | Committer | Type | Time | Via |
---|---|---|---|---|---|---|---|
1301 | array-min |
75.9 |
array.partition(fn) Partitions the array by applying `fn` to all of its elements: ```py f odd(n) { return !!(n % 2) } [0, 1, 2, 3, 4, 5].partition(odd) # [[0, 2, 4], [1, 3, 5]] [1, "1", {}].partition(str) # [[1, "1"], [{}]] ``` | push | 28 Mar 2020 01:35PM UTC | travis-ci-com | |
1295 | array-min |
75.64 |
array.min() Finds the lowest number in an array: ```py [].min() # NULL [0, 5, -10, 100].min() # -10 ``` | Pull #351 | 28 Mar 2020 12:40PM UTC | travis-ci-com | |
1294 | array-min |
75.64 |
array.min() Finds the lowest number in an array: ```py [].min() # NULL [0, 5, -10, 100].min() # -10 ``` | push | 28 Mar 2020 12:39PM UTC | travis-ci-com |