Conditions | 5 |
Paths | 5 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | |||
3 | decideBlackListWhiteList: function (inDecisionValue, inEvaluatedValueForBlackList, inBlackListArray, inEvaluatedValueForWhiteList, inWhiteListArray, inValueToEvaluate) { |
||
4 | var outResultBoolean = false; |
||
5 | if (inDecisionValue === inEvaluatedValueForBlackList) { |
||
6 | if (inBlackListArray.indexOf(inValueToEvaluate) === -1) { |
||
7 | outResultBoolean = true; |
||
8 | } |
||
9 | } else if (inDecisionValue === inEvaluatedValueForWhiteList) { |
||
10 | if (inWhiteListArray.indexOf(inValueToEvaluate) > -1) { |
||
11 | outResultBoolean = true; |
||
12 | } |
||
13 | } |
||
14 | return outResultBoolean; |
||
15 | }, |
||
16 | buildRequestQuery: function (targetSharePointURL, crtListName, queryType, headerOptions) { |
||
30 |