UNPKG
@richardo2016/rcli
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Richard's cli
github.com/richardo2016/rcli
richardo2016/rcli
@richardo2016/rcli
/
lib
/
utils
/
yaml.js
7 lines
(6 loc)
•
227 B
JavaScript
View Raw
1
2
3
4
5
6
7
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
const
TWO_SPACES
= [
' '
,
' '
].
join
(
''
);
function
filterYamlInput
(
input
) {
return
input.
replace
(
/\t/g
,
TWO_SPACES
); }
exports
.
filterYamlInput
= filterYamlInput;