source: frontend/node_modules/clean-css/lib/utils/format-position.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: 239 bytes
Line 
1function formatPosition(metadata) {
2 var line = metadata[0];
3 var column = metadata[1];
4 var source = metadata[2];
5
6 return source
7 ? source + ':' + line + ':' + column
8 : line + ':' + column;
9}
10
11module.exports = formatPosition;
Note: See TracBrowser for help on using the repository browser.