LoginSignup
0
0

More than 5 years have passed since last update.

Intlによるlocaleの判定

Posted at

Intl - JavaScript | MDN

上記リンクによると、ブラウザ環境におけるIntlによるlocaleの判定は、Safari以外では動く。

また、node v4以降でも判定可能。

node
Intl.NumberFormat().resolvedOptions().locale
// => 'ja-JP'
chrome56
Intl.NumberFormat().resolvedOptions().locale
// => 'ja'

出力が全く同じというわけではない。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0