({ attributes })
| 90 | meta: { |
| 91 | srcAttributes: ['content'], |
| 92 | filter({ attributes }) { |
| 93 | if ( |
| 94 | attributes.name && |
| 95 | ALLOWED_META_NAME.includes(attributes.name.trim().toLowerCase()) |
| 96 | ) { |
| 97 | return true |
| 98 | } |
| 99 | |
| 100 | if ( |
| 101 | attributes.property && |
| 102 | ALLOWED_META_PROPERTY.includes(attributes.property.trim().toLowerCase()) |
| 103 | ) { |
| 104 | return true |
| 105 | } |
| 106 | |
| 107 | return false |
| 108 | }, |
| 109 | }, |
| 110 | } |
| 111 |
no outgoing calls
no test coverage detected