https://github.com/noah227/os-locale-ex
https://github.com/noah227/os-locale-ex
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/noah227/os-locale-ex
- Owner: noah227
- Created: 2024-03-07T08:07:36.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-11T03:19:49.000Z (about 1 year ago)
- Last Synced: 2025-02-15T22:36:07.115Z (3 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# os-locale-ex
> A CommonJS version of [os-locale](https://www.npmjs.com/package/os-locale)
>
> **Remind**: If your `node version` >= 16, you'll don't need this anymore,
> just set type="module" in your package.json to enable `esm support`## Usage
``` js
const {osLocale, osLocaleSync} = require("os-locale-ex")osLocale().then(_ => {
console.log(_)
})console.log(osLocaleSync())
```