UNPKG

290 Btext/coffeescriptView Raw
1#!/usr/bin/env coffee
2require 'shelljs/make'
3dd = (
4 require '../dist'
5).default
6
7echo = console.log
8echo typeof dd
9echo Object.keys dd
10
11target.all = ->
12 a =
13 b: "Hello World!!!"
14 c: [
15 "Hello"
16 "World"
17 ]
18 e: =>
19 echo a
20 dd a
21 dd a
22 ,
23 hideFunctions: false
24