2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-22 10:30:34 +03:00
Files
vue-select/docs/.vuepress/generateApiDocs/utils/getSee.js
T
2019-11-21 13:00:50 -08:00

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;
};