flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
27
VISUALIZACION/node_modules/htmlnano/lib/modules/minifyJson.js
generated
vendored
Executable file
27
VISUALIZACION/node_modules/htmlnano/lib/modules/minifyJson.js
generated
vendored
Executable file
|
|
@ -0,0 +1,27 @@
|
|||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = minifyJson;
|
||||
/* Minify JSON inside <script> tags */
|
||||
function minifyJson(tree) {
|
||||
// Match all <script> tags which have JSON mime type
|
||||
tree.match({ tag: 'script', attrs: { type: /(\/|\+)json/ } }, function (node) {
|
||||
var content = (node.content || []).join('');
|
||||
if (!content) {
|
||||
return node;
|
||||
}
|
||||
|
||||
try {
|
||||
content = JSON.stringify(JSON.parse(content));
|
||||
} catch (error) {
|
||||
return node;
|
||||
}
|
||||
|
||||
node.content = [content];
|
||||
return node;
|
||||
});
|
||||
|
||||
return tree;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue