Socket
Socket
Sign inDemoInstall

bcp-47-match

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bcp-47-match

Match BCP 47 language tags with language ranges per RFC 4647


Version published
Maintainers
1
Install size
16.6 kB
Created

Readme

Source

bcp-47-match Build Status Coverage Status

Match BCP 47 language tags with “language ranges” per RFC 4647, as done by the :lang() pseudo-class in CSS, or the Accept-Language HTTP header.

Related to bcp-47.

Installation

npm:

npm install bcp-47-match

Table of Contents

Usage

var match = require('bcp-47-match')

var basic = match.basicFilter
var extended = match.extendedFilter
var lookup = match.lookup

var tags = ['en-GB', 'de-CH', 'en', 'de']

console.log(basic(tags, '*')) // => [ 'en-GB', 'de-CH', 'en', 'de' ]
console.log(basic(tags, 'en')) // => [ 'en-GB', 'en' ]
console.log(basic(tags, 'en-GB')) // => [ 'en-GB' ]
console.log(basic(tags, ['en-GB', 'en'])) // => [ 'en-GB', 'en' ]
console.log(basic(tags, 'jp')) // => []

console.log(extended(tags, '*')) // => [ 'en-GB', 'de-CH', 'en', 'de' ]
console.log(extended(tags, 'en')) // => [ 'en-GB', 'en' ]
console.log(extended(tags, 'en-GB')) // => [ 'en-GB' ]
console.log(extended(tags, '*-GB')) // => [ 'en-GB' ]
console.log(extended(tags, ['en-GB', 'en'])) // => [ 'en-GB', 'en' ]
console.log(extended(tags, 'jp')) // => []

console.log(lookup(tags, 'en')) // => 'en'
console.log(lookup(tags, 'en-GB')) // => 'en-GB'
console.log(lookup(tags, ['en-GB', 'en'])) // => 'en-GB'
console.log(lookup(tags, ['en', 'en-GB'])) // => 'en'
console.log(lookup(tags, 'jp')) // => undefined

API

match.basicFilter(tags[, ranges])

See Basic Filtering spec

Match language tags to a list of simple ranges. Searches for matches between the first range and all tags, and continues with further ranges. Returns a list of matching tags in the order they matched.

View matching table
Basic Filter*dede-CHde-DEde-*-DE*-CH
de✔︎✔︎
de-CH✔︎✔︎✔︎
de-CH-1996✔︎✔︎✔︎
de-DE✔︎✔︎✔︎
de-DE-1996✔︎✔︎✔︎
de-DE-x-goethe✔︎✔︎✔︎
de-Deva✔︎✔︎
de-Deva-DE✔︎✔︎
de-Latf-DE✔︎✔︎
de-Latn-DE✔︎✔︎
de-Latn-DE-1996✔︎✔︎
de-x-DE✔︎✔︎
en✔︎
en-GB✔︎
zh✔︎
zh-Hans✔︎
zh-Hant✔︎
Parameters
  • tags (string or Array.<string>) — List of BCP-47 tags
  • ranges (string or Array.<string>) — List of RFC 4647 basic ranges (aka, matching /^(\*|[a-z]{1,8}(-[a-z0-9]{1,8})*)$/i)
Returns

Array.<string> — Possibly empty list of matching tags in the order they matched.

match.extendedFilter(tags[, ranges])

See Extended Filtering spec

Match language tags to a list of extended ranges. Searches for matches between the first range and all tags, and continues with further ranges.

View matching table
Extended Filter*dede-CHde-DEde-*-DE*-CH
de✔︎✔︎
de-CH✔︎✔︎✔︎✔︎
de-CH-1996✔︎✔︎✔︎✔︎
de-DE✔︎✔︎✔︎✔︎
de-DE-1996✔︎✔︎✔︎✔︎
de-DE-x-goethe✔︎✔︎✔︎✔︎
de-Deva✔︎✔︎
de-Deva-DE✔︎✔︎✔︎✔︎
de-Latf-DE✔︎✔︎✔︎✔︎
de-Latn-DE✔︎✔︎✔︎✔︎
de-Latn-DE-1996✔︎✔︎✔︎✔︎
de-x-DE✔︎✔︎
en✔︎
en-GB✔︎
zh✔︎
zh-Hans✔︎
zh-Hant✔︎
Parameters
  • tags (string or Array.<string>) — List of BCP-47 tags
  • ranges (string or Array.<string>) — List of RFC 4647 extended ranges (aka, matching /^(\*|[a-z]{1,8})(-(\*|[a-z0-9]{1,8}))*$/i)
Returns

Array.<string> — Possibly empty list of matching tags in the order they matched.

match.lookup(tags, ranges)

See Lookup spec

Find the best language tag that matches a list of ranges. Searches for a match between the first range and all tags, and continues with further ranges. Returns the first match, if any.

View matching table
Lookup*dede-CHde-DEde-*-DE*-CH
de✔︎︎✔︎︎✔︎✔︎✔︎
de-CH✔︎✔︎
de-CH-1996✔︎
de-DE✔︎✔︎
de-DE-1996✔︎
de-DE-x-goethe✔︎
de-Deva✔︎
de-Deva-DE✔︎
de-Latf-DE✔︎
de-Latn-DE✔︎
de-Latn-DE-1996✔︎
de-x-DE✔︎
en✔︎
en-GB✔︎
zh✔︎
zh-Hans✔︎
zh-Hant✔︎
Parameters
  • tags (string or Array.<string>) — List of BCP-47 tags
  • ranges (string or Array.<string>) — List of RFC 4647 basic ranges (but * is ignored)
Returns

string? — The first matching tag in tags, or undefined otherwise.

License

MIT © Titus Wormer

Keywords

FAQs

Last updated on 20 Jul 2018

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