Proxies
import M from 'modelico'
const p = M.proxyDate
const defaultDate = M.Date.of(new Date('1988-04-16'))
const proxiedDate = p(defaultDate)
// without proxies
defaultDate.inner().getFullYear() // => 1988
// with proxies
proxiedDate.getFullYear() // => 1988Last updated