source: frontend/node_modules/clean-css/lib/optimizer/invalid-property-error.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 316 bytes
Line 
1function InvalidPropertyError(message) {
2 this.name = 'InvalidPropertyError';
3 this.message = message;
4 this.stack = (new Error()).stack;
5}
6
7InvalidPropertyError.prototype = Object.create(Error.prototype);
8InvalidPropertyError.prototype.constructor = InvalidPropertyError;
9
10module.exports = InvalidPropertyError;
Note: See TracBrowser for help on using the repository browser.