arcdash
v0.0.52
Published
Business Function Library - Modern, Simple, Typed, and Powerful
Downloads
111
Readme
Arcdash
Introduction
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!
Install
use npm:
npm install arcdash
use yarn:
yarn add arcdash
use pnpm:
pnpm add radash
Usage
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