In order to meet the use of basic functions on the basis of focusing on the content of the business function, there is any need to lack of missing functions welcome to exchange!
use npm:
npm install arcdash
use yarn:
yarn add arcdash
use pnpm:
pnpm add radash
import { joinValues, sum } from 'arcash'
joinValues([], '-') // => ''
joinValues(['a', null, 'b', undefined, 'c'], '-') // => a-b-c
const list = [{ value: 5 }, { value: 5 }, { value: 10 }, { value: 2 }]
const result = sum(list, x => x.value) // => 22