mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-22 10:30:34 +03:00
12 lines
225 B
JavaScript
12 lines
225 B
JavaScript
/**
|
|
* @param {Array} tags
|
|
* @return {[]}
|
|
*/
|
|
export default function (tags) {
|
|
const since = [];
|
|
if (tags.hasOwnProperty('see')) {
|
|
tags.see.forEach(({description}) => since.push(description));
|
|
}
|
|
return since;
|
|
};
|