chore: remove unused internal env.unSetVar() (#43175)
chore: remove unused unSetVar JS binding
Added in Oct 2020 (b33f2260
, #25623) but never used
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Charles Kerr <charles@charleskerr.com>
This commit is contained in:
parent
f3fc1e626d
commit
2ad5d1ff71
2 changed files with 0 additions and 6 deletions
|
@ -25,10 +25,6 @@ bool SetVar(const std::string& name, const std::string& value) {
|
||||||
return base::Environment::Create()->SetVar(name, value);
|
return base::Environment::Create()->SetVar(name, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool UnSetVar(const std::string& name) {
|
|
||||||
return base::Environment::Create()->UnSetVar(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
void Initialize(v8::Local<v8::Object> exports,
|
void Initialize(v8::Local<v8::Object> exports,
|
||||||
v8::Local<v8::Value> unused,
|
v8::Local<v8::Value> unused,
|
||||||
v8::Local<v8::Context> context,
|
v8::Local<v8::Context> context,
|
||||||
|
@ -37,7 +33,6 @@ void Initialize(v8::Local<v8::Object> exports,
|
||||||
dict.SetMethod("getVar", &GetVar);
|
dict.SetMethod("getVar", &GetVar);
|
||||||
dict.SetMethod("hasVar", &HasVar);
|
dict.SetMethod("hasVar", &HasVar);
|
||||||
dict.SetMethod("setVar", &SetVar);
|
dict.SetMethod("setVar", &SetVar);
|
||||||
dict.SetMethod("unSetVar", &UnSetVar);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
1
typings/internal-ambient.d.ts
vendored
1
typings/internal-ambient.d.ts
vendored
|
@ -52,7 +52,6 @@ declare namespace NodeJS {
|
||||||
getVar(name: string): string | null;
|
getVar(name: string): string | null;
|
||||||
hasVar(name: string): boolean;
|
hasVar(name: string): boolean;
|
||||||
setVar(name: string, value: string): boolean;
|
setVar(name: string, value: string): boolean;
|
||||||
unSetVar(name: string): boolean;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type AsarFileInfo = {
|
type AsarFileInfo = {
|
||||||
|
|
Loading…
Reference in a new issue