mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-02-20 17:33:08 +00:00
5 lines
115 B
JavaScript
5 lines
115 B
JavaScript
'use strict'
|
|
|
|
exports.isSQLite = function isSQLite (sequelize) {
|
|
return sequelize.options.dialect === 'sqlite'
|
|
}
|