エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Estimating Available Storage Space | Blog | Chrome for Developers
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Estimating Available Storage Space | Blog | Chrome for Developers
tl;dr Chrome 61, with more browsers to follow, now exposes an estimate of how much storage a web ... tl;dr Chrome 61, with more browsers to follow, now exposes an estimate of how much storage a web app is using and how much is available via: if ('storage' in navigator && 'estimate' in navigator.storage) { navigator.storage.estimate().then(({usage, quota}) => { console.log(`Using ${usage} out of ${quota} bytes.`); }); } Modern web apps and data storage When you think about the storage needs of a m