(value: any)
| 26 | } |
| 27 | |
| 28 | function isBoolean(value: any) { |
| 29 | if (typeof value === 'boolean') return true; |
| 30 | if (typeof value === 'string') { |
| 31 | switch (value.toLowerCase()) { |
| 32 | case true + '': |
| 33 | case false + '': |
| 34 | return true; |
| 35 | } |
| 36 | } |
| 37 | return false; |
| 38 | } |
| 39 | |
| 40 | function bingSearchLink(column: SandDance.types.Column, value: any) { |
| 41 | if (isNumber(value)) return null; |