(prop: string)
| 165 | } |
| 166 | |
| 167 | function containsVendorPrefix(prop: string): boolean { |
| 168 | // Webkit is the only real popular vendor prefix nowadays |
| 169 | // cc: http://shouldiprefix.com/ |
| 170 | return prop.substring(1, 6) == 'ebkit'; // webkit or Webkit |
| 171 | } |
| 172 | |
| 173 | let _CACHED_BODY: {style: any} | null = null; |
| 174 | let _IS_WEBKIT = false; |
no outgoing calls
no test coverage detected
searching dependent graphs…