mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-22 10:30:34 +03:00
14 lines
339 B
JavaScript
14 lines
339 B
JavaScript
/**
|
|
* @param {Array} tags
|
|
* @return {Object|false}
|
|
*/
|
|
export default function (tags) {
|
|
if (tags.hasOwnProperty('since')) {
|
|
const since = {};
|
|
since.version = tags.since[0].description;
|
|
since.link = `https://github.com/sagalbot/vue-select/releases/tag/v${tags.since[0].description}`;
|
|
return since;
|
|
}
|
|
return false;
|
|
}
|