1.0.7 • Published 10 years ago

current-locale v1.0.7

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

current-locale

npm version

What

A simple function which returns current locale.

Example usage

  1. Install it with: $ npm install current_locale

  2. Write in your code:

var currentLocaleFunction = require('current-locale');

var currentLocale = currentLocaleFunction({
  supportedLocales: ['ru', 'en-US'],
  fallbackLocale: 'en-US'
});

currentLocale variable now contains your locale.

console.log(currentLocale); // 'en-US'

Options?

It has two options:

  • supportedLocales is an array of supported locales. If it is passed and the browser locale is not one of them, then the function will return false.
  • fallbackLocale is a name of a locale which should be returned if browser locale is not one of supportedLocales.

If you do not provide any options, this function will return whatever browser says about current locale, which is usually right.

Isomorphic

It supports isomorphic apps. When navigator is undefined, it returns fallbackLocale you passed.

Browser support

All modern browsers and even some IEs.

Testing

Test it with this command: $ mocha

1.0.7

10 years ago

1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago