UNPKG

hashly

Version:

Renames static files with a hashcode for cache busting

13 lines (9 loc) 240 B
"use strict"; exports.name = "json"; exports.extension = ".json"; exports.serialize = function (manifestData) { return JSON.stringify(manifestData, null, 4); }; exports.parse = function (serialized) { return JSON.parse(serialized); };