source:
frontend/node_modules/clean-css/lib/utils/format-position.js
| Last change on this file was 9af201e, checked in by , 12 days ago | |
|---|---|
|
|
| File size: 239 bytes | |
| Line | |
|---|---|
| 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.
