Revamping to matrix style
This commit is contained in:
1695
node_modules/vscode-html-languageservice/lib/umd/beautify/beautify-css.js
generated
vendored
Normal file
1695
node_modules/vscode-html-languageservice/lib/umd/beautify/beautify-css.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3227
node_modules/vscode-html-languageservice/lib/umd/beautify/beautify-html.js
generated
vendored
Normal file
3227
node_modules/vscode-html-languageservice/lib/umd/beautify/beautify-html.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
24
node_modules/vscode-html-languageservice/lib/umd/beautify/beautify.js
generated
vendored
Normal file
24
node_modules/vscode-html-languageservice/lib/umd/beautify/beautify.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
(function (factory) {
|
||||
if (typeof module === "object" && typeof module.exports === "object") {
|
||||
var v = factory(require, exports);
|
||||
if (v !== undefined) module.exports = v;
|
||||
}
|
||||
else if (typeof define === "function" && define.amd) {
|
||||
define(["require", "exports"], factory);
|
||||
}
|
||||
})(function (require, exports) {
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.js_beautify = js_beautify;
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
/*
|
||||
* Mock for the JS formatter. Ignore formatting of JS content in HTML.
|
||||
*/
|
||||
function js_beautify(js_source_text, options) {
|
||||
// no formatting
|
||||
return js_source_text;
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user