(value, options)
| 6330 | } |
| 6331 | |
| 6332 | function hasNoMatchingOption (value, options) { |
| 6333 | for (var i = 0, l = options.length; i < l; i++) { |
| 6334 | if (looseEqual(getValue(options[i]), value)) { |
| 6335 | return false |
| 6336 | } |
| 6337 | } |
| 6338 | return true |
| 6339 | } |
| 6340 | |
| 6341 | function getValue (option) { |
| 6342 | return '_value' in option |
no test coverage detected