(value, options)
| 6336 | } |
| 6337 | |
| 6338 | function hasNoMatchingOption (value, options) { |
| 6339 | for (var i = 0, l = options.length; i < l; i++) { |
| 6340 | if (looseEqual(getValue(options[i]), value)) { |
| 6341 | return false |
| 6342 | } |
| 6343 | } |
| 6344 | return true |
| 6345 | } |
| 6346 | |
| 6347 | function getValue (option) { |
| 6348 | return '_value' in option |
no test coverage detected