{"version":3,"file":"index-wdPLB6Mb.js","sources":["../../../node_modules/lodash/_isIterateeCall.js","../../../node_modules/lodash/toFinite.js","../../../node_modules/animation-frame/lib/root.js","../../../node_modules/animation-frame/lib/native.js","../../../node_modules/animation-frame/lib/now.js","../../../node_modules/animation-frame/lib/performance-timing.js","../../../node_modules/animation-frame/lib/performance.js","../../../node_modules/animation-frame/lib/animation-frame.js","../../../node_modules/animation-frame/index.js"],"sourcesContent":["var eq = require('./eq'),\n isArrayLike = require('./isArrayLike'),\n isIndex = require('./_isIndex'),\n isObject = require('./isObject');\n\n/**\n * Checks if the given arguments are from an iteratee call.\n *\n * @private\n * @param {*} value The potential iteratee value argument.\n * @param {*} index The potential iteratee index or key argument.\n * @param {*} object The potential iteratee object argument.\n * @returns {boolean} Returns `true` if the arguments are from an iteratee call,\n * else `false`.\n */\nfunction isIterateeCall(value, index, object) {\n if (!isObject(object)) {\n return false;\n }\n var type = typeof index;\n if (type == 'number'\n ? (isArrayLike(object) && isIndex(index, object.length))\n : (type == 'string' && index in object)\n ) {\n return eq(object[index], value);\n }\n return false;\n}\n\nmodule.exports = isIterateeCall;\n","var toNumber = require('./toNumber');\n\n/** Used as references for various `Number` constants. */\nvar INFINITY = 1 / 0,\n MAX_INTEGER = 1.7976931348623157e+308;\n\n/**\n * Converts `value` to a finite number.\n *\n * @static\n * @memberOf _\n * @since 4.12.0\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {number} Returns the converted number.\n * @example\n *\n * _.toFinite(3.2);\n * // => 3.2\n *\n * _.toFinite(Number.MIN_VALUE);\n * // => 5e-324\n *\n * _.toFinite(Infinity);\n * // => 1.7976931348623157e+308\n *\n * _.toFinite('3.2');\n * // => 3.2\n */\nfunction toFinite(value) {\n if (!value) {\n return value === 0 ? value : 0;\n }\n value = toNumber(value);\n if (value === INFINITY || value === -INFINITY) {\n var sign = (value < 0 ? -1 : 1);\n return sign * MAX_INTEGER;\n }\n return value === value ? value : 0;\n}\n\nmodule.exports = toFinite;\n","var root\n// Browser window\nif (typeof window !== 'undefined') {\n root = window\n// Web Worker\n} else if (typeof self !== 'undefined') {\n root = self\n// Other environments\n} else {\n root = this\n}\n\nmodule.exports = root\n","'use strict'\n\nvar root = require('./root')\n\n// Test if we are within a foreign domain. Use raf from the top if possible.\ntry {\n // Accessing .name will throw SecurityError within a foreign domain.\n root.top.name\n root = root.top\n} catch(e) {}\n\nexports.request = root.requestAnimationFrame\nexports.cancel = root.cancelAnimationFrame || root.cancelRequestAnimationFrame\nexports.supported = false\n\nvar vendors = ['Webkit', 'Moz', 'ms', 'O']\n\n// Grab the native implementation.\nfor (var i = 0; i < vendors.length && !exports.request; i++) {\n exports.request = root[vendors[i] + 'RequestAnimationFrame']\n exports.cancel = root[vendors[i] + 'CancelAnimationFrame'] ||\n root[vendors[i] + 'CancelRequestAnimationFrame']\n}\n\n// Test if native implementation works.\n// There are some issues on ios6\n// http://shitwebkitdoes.tumblr.com/post/47186945856/native-requestanimationframe-broken-on-ios-6\n// https://gist.github.com/KrofDrakula/5318048\n\nif (exports.request) {\n exports.request.call(null, function() {\n exports.supported = true\n })\n}\n","'use strict'\n\n/**\n * Crossplatform Date.now()\n *\n * @return {Number} time in ms\n * @api private\n */\nmodule.exports = Date.now || function() {\n return (new Date).getTime()\n}\n","'use strict'\n\nvar now = require('./now')\n\n/**\n * Replacement for PerformanceTiming.navigationStart for the case when\n * performance.now is not implemented.\n *\n * https://developer.mozilla.org/en-US/docs/Web/API/PerformanceTiming.navigationStart\n *\n * @type {Number}\n * @api private\n */\nexports.navigationStart = now()\n","'use strict'\n\nvar now = require('./now')\nvar PerformanceTiming = require('./performance-timing')\nvar root = require('./root')\n\n/**\n * Crossplatform performance.now()\n *\n * https://developer.mozilla.org/en-US/docs/Web/API/Performance.now()\n *\n * @return {Number} relative time in ms\n * @api public\n */\nexports.now = function () {\n if (root.performance && root.performance.now) return root.performance.now()\n return now() - PerformanceTiming.navigationStart\n}\n","'use strict'\n\nvar nativeImpl = require('./native')\nvar now = require('./now')\nvar performance = require('./performance')\nvar root = require('./root')\n\n// Weird native implementation doesn't work if context is defined.\nvar nativeRequest = nativeImpl.request\nvar nativeCancel = nativeImpl.cancel\n\n/**\n * Animation frame constructor.\n *\n * Options:\n * - `useNative` use the native animation frame if possible, defaults to true\n * - `frameRate` pass a custom frame rate\n *\n * @param {Object|Number} options\n */\nfunction AnimationFrame(options) {\n if (!(this instanceof AnimationFrame)) return new AnimationFrame(options)\n options || (options = {})\n\n // Its a frame rate.\n if (typeof options == 'number') options = {frameRate: options}\n options.useNative != null || (options.useNative = true)\n this.options = options\n this.frameRate = options.frameRate || AnimationFrame.FRAME_RATE\n this._frameLength = 1000 / this.frameRate\n this._isCustomFrameRate = this.frameRate !== AnimationFrame.FRAME_RATE\n this._timeoutId = null\n this._callbacks = {}\n this._lastTickTime = 0\n this._tickCounter = 0\n}\n\nmodule.exports = AnimationFrame\n\n/**\n * Default frame rate used for shim implementation. Native implementation\n * will use the screen frame rate, but js have no way to detect it.\n *\n * If you know your target device, define it manually.\n *\n * @type {Number}\n * @api public\n */\nAnimationFrame.FRAME_RATE = 60\n\n/**\n * Replace the globally defined implementation or define it globally.\n *\n * @param {Object|Number} [options]\n * @api public\n */\nAnimationFrame.shim = function(options) {\n var animationFrame = new AnimationFrame(options)\n\n root.requestAnimationFrame = function(callback) {\n return animationFrame.request(callback)\n }\n root.cancelAnimationFrame = function(id) {\n return animationFrame.cancel(id)\n }\n\n return animationFrame\n}\n\n/**\n * Request animation frame.\n * We will use the native RAF as soon as we know it does works.\n *\n * @param {Function} callback\n * @return {Number} timeout id or requested animation frame id\n * @api public\n */\nAnimationFrame.prototype.request = function(callback) {\n var self = this\n\n // Alawys inc counter to ensure it never has a conflict with the native counter.\n // After the feature test phase we don't know exactly which implementation has been used.\n // Therefore on #cancel we do it for both.\n ++this._tickCounter\n\n if (nativeImpl.supported && this.options.useNative && !this._isCustomFrameRate) {\n return nativeRequest(callback)\n }\n\n if (!callback) throw new TypeError('Not enough arguments')\n\n if (this._timeoutId == null) {\n // Much faster than Math.max\n // http://jsperf.com/math-max-vs-comparison/3\n // http://jsperf.com/date-now-vs-date-gettime/11\n var delay = this._frameLength + this._lastTickTime - now()\n if (delay < 0) delay = 0\n\n this._timeoutId = setTimeout(function() {\n self._lastTickTime = now()\n self._timeoutId = null\n ++self._tickCounter\n var callbacks = self._callbacks\n self._callbacks = {}\n for (var id in callbacks) {\n if (callbacks[id]) {\n if (nativeImpl.supported && self.options.useNative) {\n nativeRequest(callbacks[id])\n } else {\n callbacks[id](performance.now())\n }\n }\n }\n }, delay)\n }\n\n this._callbacks[this._tickCounter] = callback\n\n return this._tickCounter\n}\n\n/**\n * Cancel animation frame.\n *\n * @param {Number} timeout id or requested animation frame id\n *\n * @api public\n */\nAnimationFrame.prototype.cancel = function(id) {\nif (nativeImpl.supported && this.options.useNative) nativeCancel(id)\ndelete this._callbacks[id]\n}\n","/**\n * An even better animation frame.\n *\n * @copyright Oleg Slobodskoi 2016\n * @website https://github.com/kof/animationFrame\n * @license MIT\n */\n\nmodule.exports = require('./lib/animation-frame')\n"],"names":["require$$0","require$$1","require$$2","require$$3","root","this","now","performance","animationFrame"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8]}