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