import Collection from '../Collection'; /** * Create a collection from the array. * * @param {any} items * * @return {Collection} */ export default function collect(items?: T | T[]): Collection { return new Collection(items); }