source: imaps-frontend/node_modules/clean-css/lib/optimizer/invalid-property-error.js@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • 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.