Skip to content

Latest commit

 

History

History
52 lines (39 loc) · 1.3 KB

README.md

File metadata and controls

52 lines (39 loc) · 1.3 KB

Arcdash

Business Function Library - Modern, Simple, Typed, and Powerful

bundle size npm downloads npm version MIT license

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