Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 13 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import inputValidation from './decorator'; |
||
2 | import { FOO, BAR } from './constants'; |
||
3 | import { allStrings, join } from './utils'; |
||
4 | |||
5 | /** |
||
6 | * An example function just to show the build and ci pipeline works. |
||
7 | * |
||
8 | * @returns {string} Hello world. |
||
9 | */ |
||
10 | export default () => |
||
11 | inputValidation({ |
||
12 | validator: allStrings, |
||
13 | })(join)(FOO, BAR); |
||
14 |