Sign in
apache
/
nifi-fds
/
gh-pages
/
.
/
node_modules
/
clean-css
/
lib
/
utils
/
format-position.js
blob: 0e3713c19bd3b9f1252f2380900f99ccf85c5934 [
file
] [
log
] [
blame
]
function
formatPosition
(
metadata
)
{
var
line
=
metadata
[
0
];
var
column
=
metadata
[
1
];
var
source
=
metadata
[
2
];
return
source
?
source
+
':'
+
line
+
':'
+
column
:
line
+
':'
+
column
;
}
module
.
exports
=
formatPosition
;