
Security News
Opengrep Adds Apex Support and New Rule Controls in Latest Updates
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
in-browser-language
Advanced tools
This module is designed to be used with browserify or other CJS bundlers.
npm i in-browser-language --save
The module checks for (in order) :
window.navigator.languages
window.navigator.language
window.clientInformation.userLanguage
window.clientInformation.browserLanguage
window.clientInformation.systemLanguage
Some systems / browser may actually return the language of the OS instead of the language of the browser.
There is no way around this issue but it can be mitigated by allowing the user to change its language.
list()
Return an array containing the languages.
first()
Return the first language of the list.
pick(proposedLanguages, defaultLanguage)
Pick the first language found both in the proposedLanguages
array and the list of languages supported by the browser.
If there are no matches, the defaultLanguage is returned.
var browserLanguage = require('in-browser-language');
console.log(browserLanguage.list());
// returns ['fr', 'en']
console.log(browserLanguage.first());
// returns 'fr'
console.log(browserLanguage.pick(['pl', 'ja', 'en', 'fr']));
// returns 'fr' as 'fr' is the first declared by the browser
console.log(browserLanguage.pick(['pl', 'ja'], 'pl'));
// returns 'pl' as there are no matches
console.log(browserLanguage.pick(['pl', 'ja']));
// returns null as there are no matches and no defaultLanguage
uniq
dependency.FAQs
Get the language of the browser
The npm package in-browser-language receives a total of 1,151 weekly downloads. As such, in-browser-language popularity was classified as popular.
We found that in-browser-language demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.