UNPKG

@jsenv/plugin-minification

Version:
9 lines (8 loc) 244 B
export const minifyJson = (jsonUrlInfo) => { const { content } = jsonUrlInfo; if (content.startsWith("{\n")) { const jsonWithoutWhitespaces = JSON.stringify(JSON.parse(content)); return jsonWithoutWhitespaces; } return null; };