/*! ply 0.1.0 Original author Alan Plum . Released into the Public Domain under the UNLICENSE. @preserve */ function slice(l,p){return Array.prototype.slice.call(l,p)}exports.apply=apply;exports.call=call;exports.fapply=fapply;exports.fcall=fcall;exports.mapply=mapply;exports.mcall=mcall;function apply(l,p,a){return l.apply(p,a)}function call(l,p){return apply(l,p,slice(arguments,2))}function fapply(l,p){return apply(l,this,p)}function fcall(l){return apply(l,this,slice(arguments,1))}function mapply(l,p,a){return apply(l[p],l,a)}function mcall(l,p){return mapply(l,p,slice(arguments,2))}