UNPKG
@amberjs/sql-connector
Version:
latest (1.0.4)
1.0.4
1.0.3
Amber.js connector for sql datastores
@amberjs/sql-connector
/
configValidator.js
12 lines
(11 loc)
•
186 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** * *
@param
{Object} config *
@return
{Object} validation results */
const
configValidator
=
(config) => {
return
{ isValid:
true
}; };
module
.
exports
= configValidator;