-
Notifications
You must be signed in to change notification settings - Fork 7
API 참조
JongChan Choi edited this page Feb 8, 2016
·
3 revisions
html 파일 상단에 <script>
태그를 추가합니다:
<script type="text/javascript" src="yaksok.min.js"></script>
npm install --save yaksok
var yaksok = require('yaksok');
var compiler = new yaksok.compiler.JsTargetCompiler();
compiler.plugins.add(new yaksok.plugin.ConstantFolder({ dce: true }));
compiler.compile(`
약속 예제 뭘로하지
결과: '몰라'
만약 (예제 뭘로하지) = '몰라' 이면
'어쩌라고' 보여주기
# 아, 이런거 되는거 자랑해야지
만약 1 < 2 이면
'이 코드는 살아남는 코드입니다' 보여주기
아니라면
'이 코드는 사라지는 코드입니다' 보여주기
`).then(js => {
console.log(js);
});