# @ts-check

import pop_getType from './getType'
import pop_isArray from './isArray'

###* @type import('./pop').Pop ###
export default (list) ->

  unless pop_isArray list
    throw new Error "pop: Expected an array, got #{ pop_getType list }"

  return list.Pop()