UNPKG
@actyx/sdk
Version:
latest (0.5.10)
next (0.4.0-rc8)
0.5.10
0.5.9
0.5.8
0.5.7
0.5.6
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
0.4.2
0.4.1
0.4.0
0.4.0-rc8
0.4.0-rc7
0.4.0-rc6
0.4.0-rc5
0.4.0-rc4
0.4.0-rc3
0.4.0-rc2
0.4.0-rc1
0.3.3
0.3.3-rc1
0.3.2
0.3.1
0.3.0
0.2.1
0.2.0
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.2
0.0.1
Actyx SDK
developer.actyx.com
Actyx/Actyx
@actyx/sdk
/
node_modules
/
rxjs
/
dist
/
esm
/
internal
/
operators
/
partition.js
6 lines
•
259 B
JavaScript
View Raw
1
2
3
4
5
6
import
{ not }
from
'../util/not'
;
import
{ filter }
from
'./filter'
;
export
function
partition
(
predicate, thisArg
) {
return
(
source
) =>
[
filter
(predicate, thisArg)(source),
filter
(
not
(predicate, thisArg))(source)]; }
//# sourceMappingURL=partition.js.map