( jsonml )
| 1461 | } |
| 1462 | |
| 1463 | function extract_attr( jsonml ) { |
| 1464 | return isArray(jsonml) |
| 1465 | && jsonml.length > 1 |
| 1466 | && typeof jsonml[ 1 ] === "object" |
| 1467 | && !( isArray(jsonml[ 1 ]) ) |
| 1468 | ? jsonml[ 1 ] |
| 1469 | : undefined; |
| 1470 | } |
| 1471 | |
| 1472 | |
| 1473 |
no outgoing calls
no test coverage detected