@riotjs/parser
Version:
The parser for Riot tags
12 lines (11 loc) • 393 B
JavaScript
/**
* Add an item into a collection, if the collection is not an array
* we create one and add the item to it
* @param {Array} collection - target collection
* @param {*} item - item to add to the collection
* @returns {Array} array containing the new item added to it
*/
export default function addToCollection(collection = [], item) {
collection.push(item)
return collection
}