Socket
Socket
Sign inDemoInstall

ander

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ander

Use the "and" list patterns from CLDR for rendering lists of items in a locale-specific format


Version published
Weekly downloads
2
Maintainers
1
Install size
77.1 kB
Created
Weekly downloads
 

Changelog

Source

v0.1.1 (2019-05-02)

  • Avoid default params for browser compatibility (Andreas Lind)

Readme

Source

ander

Render a list of items as dictated by the locale. The formats are extracted from the CLDR.

Installation

npm install ander

Syntax

ander(itemsArray, localeId = 'en-US')

Returns a string with the formatted list items.

Examples

const ander = require('ander');

// American English:
console.log(ander(['foo', 'bar', 'quux'], 'en-US'));
// foo, bar, and quux

// Arabic:
console.log(ander(['foo', 'bar', 'quux'], 'ar'));
// foo، bar، وquux

FAQs

Last updated on 02 May 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc