Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

join-string

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

join-string

A utility for joining strings

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
37
increased by184.62%
Maintainers
1
Weekly downloads
 
Created
Source

join-string

version license build Coverage Status

Joining string/classes with specified delimiter.


Example

import joinString from 'join-string';

const joinFn = joinString(', ');
const isTrue = true;
const isFalse = false;
const result = joinFn('a', 'b', isTrue && 'c', isFalse && 'd', undefined);

console.log(result); // "a, b, c"

Installation

This module is distributed via npm which is bundled with node and should be installed as one of your project's dependencies:

npm install --save join-string

or

yarn add join-string

API

joinString: (delimiter: string) => (...items: any[]) => string

joinString is a higher-order function that accepts delimiter as parameter and returns a joining function that will join all its parameters with the delimiter.

The filtering rule of the joining functions are:

  1. string will be included except when it is an empty string ("");
  2. number will be included
  3. null, undefined, and boolean will be ignored. This allows you to provide optional strings or conditional string with ternary expression.
  4. array will be flattened and filtered based on the rules above.

joinString is available with import joinString from 'join-string' or import { joinString } from 'join-string', based on your preference.

joinClass: (...classNames: any[]) => string

joinClass is an utility to construct className. It join all its parameter with a space.

Under the hood, joinClass is just joinString(' ').

Keywords

FAQs

Package last updated on 25 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc