UNPKG

eslint-plugin-i18n-json

Version:

Fully extendable eslint plugin for JSON i18n translation files.

10 lines (9 loc) 210 B
module.exports = (message) => { let normalized = message; if (typeof message === 'string') { normalized = message.trim(); } if (!normalized) { throw new SyntaxError('Message is Empty.'); } };