UNPKG

340 BJavaScriptView Raw
1/*!
2{
3 "name": "Web SQL Database",
4 "property": "websqldatabase",
5 "caniuse": "sql-storage",
6 "tags": ["storage"]
7}
8!*/
9define(['Modernizr'], function(Modernizr) {
10 // Chrome incognito mode used to throw an exception when using openDatabase
11 // It doesn't anymore.
12 Modernizr.addTest('websqldatabase', 'openDatabase' in window);
13});