UNPKG
markdown-builder
Version:
latest (0.9.0)
0.9.0
0.8.9
0.8.8
0.8.7
0.8.6
0.8.4
0.8.4-hotfix
0.8.4-dev
0.8.3
0.8.3-dev
0.8.2
0.8.1
0.7.9
0.7.9-build
0.7.8
0.7.7
0.7.6
0.7.5
0.7.4
0.7.3
0.7.1
The next-gen markdown builder for node
flxwu/markdown-builder
markdown-builder
/
src
/
util
/
helpers.js
11 lines
(7 loc)
•
233 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * Utility functions & helpers *
@flow
*/
const
withPrefix
= (
prefix
:
string
,
text
:
string
) => prefix +
' '
+ text;
const
surround
= (
prefix
:
string
,
text
:
string
) => prefix + text + prefix;
export
{ withPrefix, surround };