source: frontend/node_modules/sass-loader/dist/SassWarning.js

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

Fix frontend appearance

  • Property mode set to 100644
File size: 456 bytes
RevLine 
[9af201e]1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = void 0;
7
8class SassWarning extends Error {
9 constructor(warning, options) {
10 super(warning);
11 this.name = "SassWarning";
12 this.hideStack = true;
13
14 if (options.span) {
15 this.loc = {
16 line: options.span.start.line,
17 column: options.span.start.column
18 };
19 }
20 }
21
22}
23
24var _default = SassWarning;
25exports.default = _default;
Note: See TracBrowser for help on using the repository browser.