(value, options)
| 6778 | } |
| 6779 | |
| 6780 | function hasNoMatchingOption (value, options) { |
| 6781 | for (var i = 0, l = options.length; i < l; i++) { |
| 6782 | if (looseEqual(getValue(options[i]), value)) { |
| 6783 | return false |
| 6784 | } |
| 6785 | } |
| 6786 | return true |
| 6787 | } |
| 6788 | |
| 6789 | function getValue (option) { |
| 6790 | return '_value' in option |
no test coverage detected