We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12919c1 commit 154e430Copy full SHA for 154e430
index.js
@@ -163,6 +163,13 @@ const GET = exports.GET = {
163
return node['itunes:duration']
164
},
165
166
+ keywords: function (node) {
167
+ if(node["itunes:keywords"] && node["itunes:keywords"].length > 0){
168
+ return node["itunes:keywords"].map(keywords=>keywords.split(",").map(keyword=>keyword.trim()))
169
+ }
170
+ return [];
171
+ },
172
+
173
categories: function (node) {
174
// returns categories as an array containing each category/sub-category
175
// grouping in lists. If there is a sub-category, it is the second element
0 commit comments