exports.Actor = class Actor

  ensureArgs: ->
    args = Array.prototype.slice.call(arguments)
    if args[1]? && typeof args[1] isnt "string"
      args = new Array(args[0], "", args.slice(1)...)
    args
