mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
14 lines
340 B
JavaScript
14 lines
340 B
JavaScript
/*!
|
|
{
|
|
"name": "Web SQL Database",
|
|
"property": "websqldatabase",
|
|
"caniuse": "sql-storage",
|
|
"tags": ["storage"]
|
|
}
|
|
!*/
|
|
define(['Modernizr'], function(Modernizr) {
|
|
// Chrome incognito mode used to throw an exception when using openDatabase
|
|
// It doesn't anymore.
|
|
Modernizr.addTest('websqldatabase', 'openDatabase' in window);
|
|
});
|