const con = require('./connect'); function shelvingExist(shelving, callback) { const consSql = `SELECT * FROM vn.shelving WHERE code = ?`; con.query(consSql, shelving, function(err, result, fields) { callback(null, result); }); } exports.shelvingExist = shelvingExist;