UNPKG
markdown2jira
Version:
latest (1.2.0)
1.2.0
0.1.0
0.0.4
0.0.3
Export Markdown document to JIRA JSON import file
bitbucket.org/vodamiro/markdown2jira
markdown2jira
/
lib
/
exporter
/
file_writer.js
6 lines
(5 loc)
•
208 B
JavaScript
View Raw
1
2
3
4
5
6
import
fs
from
'fs'
export
default
function
save
(
filename, content
) { fs.
writeFileSync
(filename,
JSON
.
stringify
(content ,
null
,
" "
), {
encoding
:
'utf8'
})
console
.
log
(
"Saved to file: "
+ filename) }