LoginSignup
1
0

More than 3 years have passed since last update.

platform.js のparse()に"てきとー"なUserAgentを入れたときの戻り値

Posted at
// 本来はUserAgentを入れるとこに'てきとー'をいれてみる
console.log(platform.parse("てきとー"));

// 結果
{
    "description": "てきとー",
    "layout": null,
    "manufacturer": null,
    "name": null,
    "prerelease": null,
    "product": null,
    "ua": "てきとー",
    "version": null,
    "os": {
        "architecture": null,
        "family": null,
        "version": null
    }
}

platform.js ver1.3.6
https://github.com/bestiejs/platform.js/

1
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
1
0