mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 20:52:56 +01:00
remove unnecessary parens
This commit is contained in:
parent
8332b52938
commit
1723fda926
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
|
@ -40,7 +40,7 @@ const languagesById = fromPairs(
|
||||||
[id, ...(language.alias || [])].map((label) => [label, Object.assign({ label }, language )])
|
[id, ...(language.alias || [])].map((label) => [label, Object.assign({ label }, language )])
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
const featuresById = mapValues(FEATURES, (feature, key) => (Object.assign({ label: key }, feature )));
|
const featuresById = mapValues(FEATURES, (feature, key) => Object.assign({ label: key }, feature ));
|
||||||
|
|
||||||
class MonacoWebpackPlugin {
|
class MonacoWebpackPlugin {
|
||||||
constructor(options = {}) {
|
constructor(options = {}) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue