chore: update deps
This commit is contained in:
10
node_modules/clean-css/lib/optimizer/level-2/invalid-property-error.js
generated
vendored
Normal file
10
node_modules/clean-css/lib/optimizer/level-2/invalid-property-error.js
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
function InvalidPropertyError(message) {
|
||||
this.name = 'InvalidPropertyError';
|
||||
this.message = message;
|
||||
this.stack = (new Error()).stack;
|
||||
}
|
||||
|
||||
InvalidPropertyError.prototype = Object.create(Error.prototype);
|
||||
InvalidPropertyError.prototype.constructor = InvalidPropertyError;
|
||||
|
||||
module.exports = InvalidPropertyError;
|
Reference in New Issue
Block a user