fune/devtools/client/shared/webpack/rewrite-raw.js
Jan Odvarko dbdcbb0d21 Bug 1395834 - Launchpad is broken; r=nchevobbe
MozReview-Commit-ID: CdeEvvE6ExB

--HG--
rename : devtools/client/webconsole/webpack/rewrite-raw.js => devtools/client/shared/webpack/rewrite-raw.js
extra : rebase_source : d833b3c6199b75bdd34e1a2f015e51da13450a80
2017-09-14 09:50:54 +02:00

12 lines
414 B
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// Remove the "raw!" prefix used in some require which confuses webpack.
"use strict";
module.exports = function (content) {
this.cacheable && this.cacheable();
return content.replace(/raw\!/g, "");
};