mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-12-29 00:01:14 +00:00
6 lines
115 B
JavaScript
6 lines
115 B
JavaScript
|
'use strict'
|
||
|
|
||
|
exports.isSQLite = function isSQLite (sequelize) {
|
||
|
return sequelize.options.dialect === 'sqlite'
|
||
|
}
|