code-server-2/packages/vscode/src/fill/css.js

7 lines
232 B
JavaScript
Raw Normal View History

2019-01-08 00:46:19 +00:00
module.exports = function(source) {
if (this.resourcePath.endsWith(".ts")) {
this.resourcePath = this.resourcePath.replace(".ts", ".css");
}
return `module.exports = require("${this.resourcePath.replace(/\\/g, "\\\\")}");`;
2019-01-08 00:46:19 +00:00
};