UNPKG

235 BJavaScriptView Raw
1module.exports = function (source) {
2 if (this.cacheable) {
3 this.cacheable();
4 }
5
6 if ((typeof source === "string") && (/^#!/.test(source))) {
7 source = source.replace(/^#![^\n\r]*[\r\n]/, "");
8 }
9 return source
10};
\No newline at end of file