{"version":3,"sources":["../node_modules/function-bind/index.js","../node_modules/function-bind/implementation.js"],"names":["implementation","require","module","exports","Function","prototype","bind","ERROR_MESSAGE","slice","Array","toStr","Object","toString","funcType","that","target","this","call","TypeError","bound","args","arguments","binder","result","apply","concat","boundLength","Math","max","length","boundArgs","i","push","join","Empty"],"mappings":"wGAEA,IAAIA,EAAiBC,EAAQ,KAE7BC,EAAOC,QAAUC,SAASC,UAAUC,MAAQN,G,iCCA5C,IAAIO,EAAgB,kDAChBC,EAAQC,MAAMJ,UAAUG,MACxBE,EAAQC,OAAON,UAAUO,SACzBC,EAAW,oBAEfX,EAAOC,QAAU,SAAcW,GAC3B,IAAIC,EAASC,KACb,GAAsB,oBAAXD,GAAyBL,EAAMO,KAAKF,KAAYF,EACvD,MAAM,IAAIK,UAAUX,EAAgBQ,GAyBxC,IAvBA,IAEII,EAFAC,EAAOZ,EAAMS,KAAKI,UAAW,GAG7BC,EAAS,WACT,GAAIN,gBAAgBG,EAAO,CACvB,IAAII,EAASR,EAAOS,MAChBR,KACAI,EAAKK,OAAOjB,EAAMS,KAAKI,aAE3B,OAAIV,OAAOY,KAAYA,EACZA,EAEJP,KAEP,OAAOD,EAAOS,MACVV,EACAM,EAAKK,OAAOjB,EAAMS,KAAKI,cAK/BK,EAAcC,KAAKC,IAAI,EAAGb,EAAOc,OAAST,EAAKS,QAC/CC,EAAY,GACPC,EAAI,EAAGA,EAAIL,EAAaK,IAC7BD,EAAUE,KAAK,IAAMD,GAKzB,GAFAZ,EAAQf,SAAS,SAAU,oBAAsB0B,EAAUG,KAAK,KAAO,4CAA/D7B,CAA4GkB,GAEhHP,EAAOV,UAAW,CAClB,IAAI6B,EAAQ,aACZA,EAAM7B,UAAYU,EAAOV,UACzBc,EAAMd,UAAY,IAAI6B,EACtBA,EAAM7B,UAAY,KAGtB,OAAOc","file":"static/js/function-bind.ee202069.chunk.js","sourcesContent":["'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = Function.prototype.bind || implementation;\n","'use strict';\n\n/* eslint no-invalid-this: 1 */\n\nvar ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';\nvar slice = Array.prototype.slice;\nvar toStr = Object.prototype.toString;\nvar funcType = '[object Function]';\n\nmodule.exports = function bind(that) {\n var target = this;\n if (typeof target !== 'function' || toStr.call(target) !== funcType) {\n throw new TypeError(ERROR_MESSAGE + target);\n }\n var args = slice.call(arguments, 1);\n\n var bound;\n var binder = function () {\n if (this instanceof bound) {\n var result = target.apply(\n this,\n args.concat(slice.call(arguments))\n );\n if (Object(result) === result) {\n return result;\n }\n return this;\n } else {\n return target.apply(\n that,\n args.concat(slice.call(arguments))\n );\n }\n };\n\n var boundLength = Math.max(0, target.length - args.length);\n var boundArgs = [];\n for (var i = 0; i < boundLength; i++) {\n boundArgs.push('$' + i);\n }\n\n bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this,arguments); }')(binder);\n\n if (target.prototype) {\n var Empty = function Empty() {};\n Empty.prototype = target.prototype;\n bound.prototype = new Empty();\n Empty.prototype = null;\n }\n\n return bound;\n};\n"],"sourceRoot":""}