@onurege3467/zerohelper
Version:
ZeroHelper is a versatile JavaScript library offering helper functions and database utilities for developers. It supports MongoDB, MySQL, SQLite, Redis, and PostgreSQL.
23 lines (20 loc) • 1.46 kB
JavaScript
module.exports = {
"table": "Table was not specified in function arguments or not string, received {received}",
"key": "Key was not specified in function arguments or not string, received {received}",
"value": "Value was not specified in function arguments, received {received}",
"number": "Number was not specified in function arguments or not number, received {received}",
"numberType": "Number argument must be an positive integer, received {received}",
"query": "SQL Query was not specified in function arguments or not string, received {received}",
"databaseName": "Database name was not specified in function arguments or not string, received {received}",
"array": "{key} key's value is not an array",
"notNumber": "{key} key's value is not a number",
"dataNotFound": "Data with the key {key} was not found",
"tableNotFound": "Table with the name {table} does not exist",
"tableAlreadyExists": "Table with the name {table} already exists",
"tableRenameSameName": "Can't rename a table to its current name",
"targetNotObject": "Cannot target a non-object with the key {key}",
"variables": "Variables object argument was not specified in function arguments, received {received}",
"variablesNotObject": "Variables argument is not an object, received {received}",
"noTablesExisted": "No tables existed to get database ping, at least one table must be existed in the database",
"baseNotString": "Base functions only works for strings"
}