wallet-core/node_modules/nyc/node_modules/os-locale
2017-12-10 21:51:33 +01:00
..
index.js node_modules 2017-08-14 05:02:09 +02:00
license add linting (and some initial fixes) 2017-05-28 00:40:43 +02:00
package.json upgrade dependencies 2017-12-10 21:51:33 +01:00
readme.md update dependencies 2017-10-14 18:40:54 +02:00

os-locale Build Status

Get the system locale

Useful for localizing your module or app.

POSIX systems: The returned locale refers to the LC_MESSAGE category, suitable for selecting the language used in the user interface for message translation.

Install

$ npm install --save os-locale

Usage

const osLocale = require('os-locale');

osLocale().then(locale => {
	console.log(locale);
	//=> 'en_US'
});

API

osLocale([options])

Returns a Promise for the locale.

osLocale.sync([options])

Returns the locale.

options

Type: Object

spawn

Type: boolean
Default: true

Set to false to avoid spawning subprocesses and instead only resolve the locale from environment variables.

License

MIT © Sindre Sorhus