UNPKG

208 BJavaScriptView Raw
1/* */
2
3const generateHash = require('./generateHash');
4
5/*
6Adds a stamp to the file
7*/
8module.exports = function addStamp(content) {
9 return `<!--
10 emdaerHash:${generateHash(content)}
11-->
12
13${content}`;
14};