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