UNPKG
avifors
Version:
latest (0.0.1)
1.0.2-dev
1.0.1-dev
1.0.0-dev
0.0.1
A MDE tool that generates code from a YAML definition of your app domain model.
avifors
/
src
/
template
/
functions.js
8 lines
(6 loc)
•
174 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
yaml
from
'js-yaml'
import
fs
from
'fs'
export
const
functions = {
_
:
(
cond, joiner=
'\n'
) =>
cond ?
joiner
:
''
,
readFile
:
path
=>
fs.
readFileSync
(path,
'utf8'
) }