blob: 500fd527c72131ebf69d4f451b6110e0a1064809 [file] [log] [blame] [edit]
import { cloneList } from './_internals/cloneList.js'
export function append(x, input){
if (arguments.length === 1) return _input => append(x, _input)
if (typeof input === 'string') return input.split('').concat(x)
const clone = cloneList(input)
clone.push(x)
return clone
}