mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-11-09 10:28:32 +00:00
Implemented library search and installation
This commit is contained in:
@@ -80,14 +80,6 @@ export class BoardsServiceImpl implements BoardsService {
|
||||
installedVersion,
|
||||
}
|
||||
return result;
|
||||
}).sort((a, b) => {
|
||||
if (a.name < b.name) {
|
||||
return -1;
|
||||
} else if (a.name === b.name) {
|
||||
return 0;
|
||||
} else {
|
||||
return 1;
|
||||
}
|
||||
});
|
||||
|
||||
return { items };
|
||||
|
||||
Reference in New Issue
Block a user