(x: any)
| 18 | * Return the first raw string if x is tagged literal. Otherwise return x. |
| 19 | */ |
| 20 | export const r = (x: any): any => |
| 21 | x != null && Object.prototype.hasOwnProperty.call(x, 'raw') |
| 22 | ? (x as {raw: string[]}).raw[0] : x; |
| 23 | |
| 24 | /** |
| 25 | * Copyright (c) 2014-present, Facebook, Inc. All rights reserved. |
no outgoing calls
no test coverage detected