UNPKG

nodebb-plugin-composer-quill

Version:
13 lines (10 loc) 271 B
'use strict'; const Sockets = module.exports; Sockets.getEmojiTable = function (socket, data, callback) { try { const table = require.main.require('nodebb-plugin-emoji/build/emoji/table.json'); callback(null, table); } catch (err) { callback(null, null); } };