mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
f196c9feb8
* lavamoat - run build system in lavamoat * lavamoat/allow-scripts - add missing policy entry * update viz and lavvamoat * trim policy file * bump viz * prue policy override * regen policy file * Update package.json * Update package.json * Apply suggestions from code review Co-authored-by: kumavis <kumavis@users.noreply.github.com> * update policy, remove redundant patches * use yarn setup in CI Co-authored-by: kumavis <aaron@kumavis.me> Co-authored-by: kumavis <kumavis@users.noreply.github.com>
17 lines
524 B
Diff
17 lines
524 B
Diff
diff --git a/node_modules/error/typed.js b/node_modules/error/typed.js
|
|
index fe9effd..e554568 100644
|
|
--- a/node_modules/error/typed.js
|
|
+++ b/node_modules/error/typed.js
|
|
@@ -22,8 +22,10 @@ function TypedError(args) {
|
|
args.name = errorName[0].toUpperCase() + errorName.substr(1);
|
|
}
|
|
|
|
- extend(createError, args);
|
|
createError._name = args.name;
|
|
+ //remove args.name, name is not extensible under strict mode (lavamoat)
|
|
+ delete args.name
|
|
+ extend(createError, args);
|
|
|
|
return createError;
|
|
|