Skip to content

Commit

Permalink
typings/lodash.d.ts: remove ancient copy of lodash.d.ts
Browse files Browse the repository at this point in the history
Change-Id: I149d07ae251186898861089b66bee9ec5a57c7a7
  • Loading branch information
hyangah committed Dec 30, 2021
1 parent b2f06cc commit 11dd0ec
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13,770 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"@types/deep-equal": "^1.0.1",
"@types/fs-extra": "^8.1.0",
"@types/glob": "^7.1.1",
"@types/lodash": "^4.14.170",
"@types/lodash": "^4.14.178",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.1",
"@types/semver": "^7.1.0",
Expand Down
4 changes: 2 additions & 2 deletions src/goImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import { dirname } from 'path';
import { toolExecutionEnvironment } from './goEnv';
import { promptForMissingTool } from './goInstallTools';
import { getBinPath } from './util';
import * as lodash from 'lodash';
import vscode = require('vscode');
import { debounce } from 'lodash';

class InterfaceItem implements vscode.QuickPickItem {
public label: string;
Expand Down Expand Up @@ -58,7 +58,7 @@ export function implCursor() {
quickPick.busy = false;
};

quickPick.onDidChangeValue(lodash.debounce(search, 250));
quickPick.onDidChangeValue(debounce(search, 250));

quickPick.onDidChangeSelection((selections: readonly vscode.QuickPickItem[]) => {
if (typeof selections === 'undefined') {
Expand Down
Loading

0 comments on commit 11dd0ec

Please sign in to comment.