⌈⌋ ⎇ branch:  Bitrhythm


Artifact Content

Artifact 332f4afef8f17ac96f3bcfb22eca167cf5bf262974c7ae2b4d22e9d9b095304e:


import * as riot from './riot'
import { compile, parsers } from './browser/compiler/index'
import extend from './browser/common/util/misc/extend'

function mount(...args) {
  var ret
  compile(function () { ret = riot.mount.apply(riot, args) })
  return ret
}

export default extend({}, riot, {
  mount,
  compile,
  parsers
})