source:
imaps-frontend/node_modules/clean-css/lib/utils/format-position.js
Last change on this file was 79a0317, checked in by , 4 days ago | |
---|---|
|
|
File size: 239 bytes |
Rev | Line | |
---|---|---|
[79a0317] | 1 | function 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 | ||
11 | module.exports = formatPosition; |
Note:
See TracBrowser
for help on using the repository browser.