Skip to content

Commit 65464a7

Browse files
committed
chore: update deps
No change to logic. This only updates dependencies, commits the package-lock.json file, and updates coding style for the new eslint version. The update was performed with: ``` nvm use v16 --delete-prefix npm install -g npm-check-updates "$(npm config get prefix)/bin/ncu" -u --enginesNode ```
1 parent 477c414 commit 65464a7

File tree

4 files changed

+6736
-7
lines changed

4 files changed

+6736
-7
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
node_modules/
22
coverage/
33
.nyc_output/
4-
package-lock.json
54

65
*~
76
*.swp

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const proxyifyCmd = (t, ...cmdStart) => {
77
// Wrap all the arguments in quotes
88
const newArgs = cmdStart
99
.concat(args)
10-
.map(x => JSON.stringify(x));
10+
.map((x) => JSON.stringify(x));
1111
// Run this command in the shell
1212
return origShell.exec.call(this.stdout, newArgs.join(' '));
1313
};
@@ -35,7 +35,7 @@ const proxyifyCmd = (t, ...cmdStart) => {
3535

3636
// Always defer to `target`
3737
has: (target, methodName) => (methodName in target),
38-
ownKeys: target => Object.keys(target),
38+
ownKeys: (target) => Object.keys(target),
3939

4040
// Prefer the existing attribute, otherwise return another Proxy
4141
get: (target, methodName) => {

0 commit comments

Comments
 (0)