* Determines if the binding value should be used (or if the value is 'undefined' and hence priority * resolution should be used.) * * @param value Binding style value.
(value: any)
| 973 | * @param value Binding style value. |
| 974 | */ |
| 975 | function isStylingValuePresent(value: any): boolean { |
| 976 | // Currently only `undefined` value is considered non-binding. That is `undefined` says I don't |
| 977 | // have an opinion as to what this binding should be and you should consult other bindings by |
| 978 | // priority to determine the valid value. |
| 979 | // This is extracted into a single function so that we have a single place to control this. |
| 980 | return value !== undefined; |
| 981 | } |
| 982 | |
| 983 | /** |
| 984 | * Normalizes and/or adds a suffix to the value. |
no outgoing calls
no test coverage detected
searching dependent graphs…