-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathPinky.js
More file actions
17 lines (14 loc) · 568 Bytes
/
Pinky.js
File metadata and controls
17 lines (14 loc) · 568 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* codded by afnanplk
*/
const { Sequelize } = require('sequelize');
const fs = require('fs');
if (fs.existsSync('config.env')) require('dotenv').config({ path: './config.env' });
// PLK Special Functions
function convertToBool(text, fault = 'true') {
return text === fault ? true : false;
}
module.exports = {
PLKAFN: process.env.BAD_WORDS === undefined ? false : process.env.BAD_WORDS,
PHONE: process.env.NUMBER === undefined ? '+919895828468' : process.env.NUMBER,
OA_NAME: process.env.DEPLOYER === undefined ? 'Amalser' : process.env.DEPLOYER,
};