source: imaps-frontend/node_modules/clean-css/lib/utils/format-position.js@ 79a0317

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

F4 Finalna Verzija

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