All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ducks.api.models.editList.create.ts Maven / Gradle / Ivy

There is a newer version: 7.28.2
Show newest version
export function create(list: TItem[], item: TItem | TItem[]): TItem[] {
    const tail = Array.isArray(item) ? item : [item]

    return [
        ...list,
        ...tail,
    ]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy