All files / src/biz parseParams.ts

75% Statements 3/4
100% Branches 0/0
0% Functions 0/1
66.67% Lines 2/3

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 51x 1x      
import * as R from 'ramda';
export const parseParams = <T>(params: T) => {
  return R.values<any, any>(params).join('/');
};