Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
it('works with other filterables', function() {
eq(R.partition(R.isEmpty, S.Just(3)),
[S.Nothing(), S.Just(3)]);
eq(R.partition(R.complement(R.isEmpty), S.Just(3)),
[S.Just(3), S.Nothing()]);
});
it('works with other filterables', function() {
eq(R.partition(R.isEmpty, S.Just(3)),
[S.Nothing(), S.Just(3)]);
eq(R.partition(R.complement(R.isEmpty), S.Just(3)),
[S.Just(3), S.Nothing()]);
});