UNPKG

discord-motto

Version:

Welcome to Discord Motto, a simple and easy to use package to set a server motto.

18 lines (13 loc) 557 B
// Require Packages const get = require('./lg'); module.exports = function(db, params, options) { // Fetch Entry let fetched = db.prepare(`SELECT * FROM ${options.table} WHERE ID = (?)`).get(params.id); if (!fetched) return null; // If empty, return null fetched = JSON.parse(fetched.json) try { fetched = JSON.parse(fetched) } catch (e) {} // Check if target was supplied if (params.ops.target) fetched = get(fetched, params.ops.target); // Get prop using dot notation // Return data return typeof fetched; }