Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/source-map-js/lib/source-map-consumer.js

    rd565449 r0c6b92a  
    152152      var mapping = mappings[i];
    153153      var source = mapping.source === null ? null : sources.at(mapping.source);
    154       source = util.computeSourceURL(sourceRoot, source, sourceMapURL);
     154      if(source !== null) {
     155        source = util.computeSourceURL(sourceRoot, source, sourceMapURL);
     156      }
    155157      boundCallback({
    156158        source: source,
     
    11431145
    11441146        var source = section.consumer._sources.at(mapping.source);
    1145         source = util.computeSourceURL(section.consumer.sourceRoot, source, this._sourceMapURL);
     1147        if(source !== null) {
     1148          source = util.computeSourceURL(section.consumer.sourceRoot, source, this._sourceMapURL);
     1149        }
    11461150        this._sources.add(source);
    11471151        source = this._sources.indexOf(source);
Note: See TracChangeset for help on using the changeset viewer.