Quantcast
Channel: Node.jsタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8837

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

$
0
0
// 本来は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/


Viewing all articles
Browse latest Browse all 8837

Trending Articles