sw-toolbox
Advanced tools
Comparing version 2.0.3 to 2.0.4
'use strict'; | ||
document.addEventListener('DOMContentLoaded', function() { | ||
var statechangeLogger = function(name, event) { | ||
console.log(name + ': State now ' + event.target.state); | ||
}; | ||
var statechangeLogger = function(name, event) { | ||
console.log(name + ': State now ' + event.target.state); | ||
}; | ||
var logger = function(message) { | ||
console.log(message); | ||
}; | ||
Notification.requestPermission(logger); | ||
navigator.serviceWorker.register('service-worker.js', { scope: './' }) | ||
.then(function(registration) { | ||
console.log(registration); | ||
var sws = ['active', 'installing', 'waiting']; | ||
sws.forEach(function(sw) { | ||
if (registration[sw]) { | ||
console.log('Found ' + sw + ' service worker'); | ||
registration[sw] | ||
.addEventListener('statechange', statechangeLogger.bind(null, sw)); | ||
} | ||
}); | ||
var toolbox = new Toolbox(); | ||
toolbox.register('service-worker.js'); | ||
toolbox.registrationReady().then(function(registration) { | ||
console.log(registration); | ||
var sws = ['active', 'installing', 'waiting']; | ||
sws.forEach(function(sw) { | ||
if (registration[sw]) { | ||
console.log('Found ' + sw + ' service worker'); | ||
registration[sw] | ||
.addEventListener('statechange', statechangeLogger.bind(null, sw)); | ||
} | ||
}); | ||
// navigator.serviceWorker.ready.then(function (sw) { | ||
// navigator.push.register().then(function (pushRegistration) { | ||
// console.log('Push Registration', pushRegistration); | ||
// }) | ||
// }); | ||
}); |
@@ -12,10 +12,10 @@ /* global shed, Response */ | ||
toolbox.router.get('/shed-demo/:foo/:bar.html', function(request, keys) { | ||
return new Response('Get a request: ' + JSON.stringify(keys)); | ||
}, {origin: 'http://localhost:8000'}); | ||
toolbox.router.get('/shed-demo/:foo/:bar', function(request, keys) { | ||
return new Response('Get a request: ' + JSON.stringify(keys)); | ||
toolbox.router.get('noop', function(){ | ||
console.log('Doing nothing'); | ||
}); | ||
toolbox.router.get('host.:ext', toolbox.fastest); | ||
toolbox.router.get('./', toolbox.fastest); | ||
toolbox.router.get('/(.*)/client.js', toolbox.fastest); | ||
toolbox.router.get('/(.*)', function(request, keys) { | ||
@@ -41,2 +41,4 @@ return new Response('Get a request: ' + JSON.stringify(keys)); | ||
toolbox.router.get('non-existant.html', toolbox.fastest); | ||
@@ -43,0 +45,0 @@ |
{ | ||
"name": "sw-toolbox", | ||
"version": "2.0.3", | ||
"version": "2.0.4", | ||
"scripts": { | ||
@@ -14,2 +14,3 @@ "test": "gulp test" | ||
"path-to-regexp": "^1.0.1", | ||
"qunitjs": "^1.18.0", | ||
"serviceworker-cache-polyfill": "coonsta/cache-polyfill", | ||
@@ -16,0 +17,0 @@ "vinyl-source-stream": "^1.0.0" |
@@ -18,3 +18,3 @@ /* | ||
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var o;"undefined"!=typeof window?o=window:"undefined"!=typeof global?o=global:"undefined"!=typeof self&&(o=self),o.toolbox=e()}}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | ||
"use strict";function cache(e,t){return helpers.openCache(t).then(function(t){return t.add(e)})}function uncache(e,t){return helpers.openCache(t).then(function(t){return t["delete"](e)})}function precache(e){Array.isArray(e)||(e=[e]),options.preCacheItems=options.preCacheItems.concat(e)}require("serviceworker-cache-polyfill");var options=require("./options"),router=require("./router"),helpers=require("./helpers"),strategies=require("./strategies");helpers.debug("Service Worker Toolbox is loading"),self.addEventListener("install",function(e){var t=options.cacheName+"$$$inactive$$$";helpers.debug("install event fired"),helpers.debug("creating cache ["+t+"]"),helpers.debug("preCache list: "+(options.preCacheItems.join(", ")||"(none)")),e.waitUntil(helpers.openCache({cacheName:t}).then(function(e){return Promise.all(options.preCacheItems).then(e.addAll.bind(e))}))}),self.addEventListener("activate",function(e){helpers.debug("activate event fired");var t=options.cacheName+"$$$inactive$$$";e.waitUntil(helpers.renameCache(t,options.cacheName))}),self.addEventListener("fetch",function(e){var t=router.match(e.request);t?e.respondWith(t(e.request)):router["default"]&&e.respondWith(router["default"](e.request))}),module.exports={networkOnly:strategies.networkOnly,networkFirst:strategies.networkFirst,cacheOnly:strategies.cacheOnly,cacheFirst:strategies.cacheFirst,fastest:strategies.fastest,router:router,options:options,cache:cache,uncache:uncache,precache:precache}; | ||
"use strict";function cache(e,t){return helpers.openCache(t).then(function(t){return t.add(e)})}function uncache(e,t){return helpers.openCache(t).then(function(t){return t["delete"](e)})}function precache(e){Array.isArray(e)||(e=[e]),options.preCacheItems=options.preCacheItems.concat(e)}require("serviceworker-cache-polyfill");var options=require("./options"),router=require("./router"),helpers=require("./helpers"),strategies=require("./strategies");helpers.debug("Service Worker Toolbox is loading");var flatten=function(e){return e.reduce(function(e,t){return e.concat(t)},[])};self.addEventListener("install",function(e){var t=options.cacheName+"$$$inactive$$$";helpers.debug("install event fired"),helpers.debug("creating cache ["+t+"]"),e.waitUntil(helpers.openCache({cacheName:t}).then(function(e){return Promise.all(options.preCacheItems).then(flatten).then(function(t){return helpers.debug("preCache list: "+(t.join(", ")||"(none)")),e.addAll(t)})}))}),self.addEventListener("activate",function(e){helpers.debug("activate event fired");var t=options.cacheName+"$$$inactive$$$";e.waitUntil(helpers.renameCache(t,options.cacheName))}),self.addEventListener("fetch",function(e){var t=router.match(e.request);t?e.respondWith(t(e.request)):router["default"]&&e.respondWith(router["default"](e.request))}),module.exports={networkOnly:strategies.networkOnly,networkFirst:strategies.networkFirst,cacheOnly:strategies.cacheOnly,cacheFirst:strategies.cacheFirst,fastest:strategies.fastest,router:router,options:options,cache:cache,uncache:uncache,precache:precache}; | ||
},{"./helpers":2,"./options":3,"./router":5,"./strategies":9,"serviceworker-cache-polyfill":14}],2:[function(require,module,exports){ | ||
@@ -132,3 +132,3 @@ "use strict";function debug(e,n){n=n||{};var c=n.debug||globalOptions.debug;c&&console.log("[sw-toolbox] "+e)}function openCache(e){e=e||{};var n=e.cacheName||globalOptions.cacheName;return debug('Opening cache "'+n+'"',e),caches.open(n)}function fetchAndCache(e,n){n=n||{};var c=n.successResponses||globalOptions.successResponses;return fetch(e.clone()).then(function(t){return"GET"===e.method&&c.test(t.status)&&openCache(n).then(function(n){n.put(e,t)}),t.clone()})}function renameCache(e,n,c){return debug("Renaming cache: ["+e+"] to ["+n+"]",c),caches["delete"](n).then(function(){return Promise.all([caches.open(e),caches.open(n)]).then(function(n){var c=n[0],t=n[1];return c.keys().then(function(e){return Promise.all(e.map(function(e){return c.match(e).then(function(n){return t.put(e,n)})}))}).then(function(){return caches["delete"](e)})})})}var globalOptions=require("./options");module.exports={debug:debug,fetchAndCache:fetchAndCache,openCache:openCache,renameCache:renameCache}; | ||
},{"../helpers":2}],8:[function(require,module,exports){ | ||
"use strict";function fastest(e,r,t){helpers.debug("Strategy: fastest ["+e.url+"]",t);var n=!1,c=[],s=function(e){return c.push(e.toString()),n?Promise.reject(new Error('Both cache and network failed: "'+c.join('", "')+'"')):void(n=!0)};return new Promise(function(r,n){helpers.fetchAndCache(e.clone(),t).then(r,s),cacheOnly(e,t).then(r,s)})}var helpers=require("../helpers"),cacheOnly=require("./cacheOnly");module.exports=fastest; | ||
"use strict";function fastest(e,n,t){return helpers.debug("Strategy: fastest ["+e.url+"]",t),new Promise(function(n,r){var s=!1,c=[],o=function(e){c.push(e.toString()),s?r(new Error('Both cache and network failed: "'+c.join('", "')+'"')):s=!0},a=function(e){e instanceof Response?n(e):o("No result returned")};helpers.fetchAndCache(e.clone(),t).then(a,o),cacheOnly(e,t).then(a,o)})}var helpers=require("../helpers"),cacheOnly=require("./cacheOnly");module.exports=fastest; | ||
},{"../helpers":2,"./cacheOnly":7}],9:[function(require,module,exports){ | ||
@@ -135,0 +135,0 @@ module.exports={networkOnly:require("./networkOnly"),networkFirst:require("./networkFirst"),cacheOnly:require("./cacheOnly"),cacheFirst:require("./cacheFirst"),fastest:require("./fastest")}; |
@@ -1,1 +0,1 @@ | ||
{"version":3,"sources":["node_modules/browserify/node_modules/browser-pack/_prelude.js","lib/router.js","lib/sw-toolbox.js","lib/helpers.js","lib/options.js","lib/strategies/index.js","lib/route.js","lib/strategies/networkOnly.js","lib/strategies/networkFirst.js","lib/strategies/cacheOnly.js","lib/strategies/cacheFirst.js","lib/strategies/fastest.js","node_modules/serviceworker-cache-polyfill/index.js","node_modules/path-to-regexp/index.js","node_modules/path-to-regexp/node_modules/isarray/index.js"],"names":["cache","url","options","helpers","openCache","then","add","uncache","precache","items","Array","isArray","preCacheItems","concat","require","router","strategies","debug","self","addEventListener","event","inactiveCache","cacheName","join","waitUntil","Promise","all","addAll","bind","renameCache","handler","match","request","respondWith","module","exports","networkOnly","networkFirst","cacheOnly","cacheFirst","fastest","message","flag","globalOptions","console","log","caches","open","fetchAndCache","successResponses","fetch","clone","response","method","test","status","put","source","destination","results","sourceCache","destCache","keys","requests","map","scope","registration","URL","location","href","basePath","pathname","pathRegexp","Route","path","indexOf","this","regexp","prototype","makeHandler","exec","values","forEach","key","index","name","cacheResponse","error","rejected","reasons","maybeReject","reason","push","toString","reject","Error","resolve","Cache","NetworkError","code","Object","create","arguments","length","TypeError","Request","String","scheme","protocol","responses","i","undefined","parse","str","res","tokens","PATH_REGEXP","m","escaped","offset","slice","prefix","capture","group","suffix","asterisk","repeat","optional","delimiter","pattern","escapeGroup","substr","compile","tokensToFunction","matches","RegExp","obj","value","isarray","j","encodeURIComponent","escapeString","replace","attachKeys","re","flags","sensitive","regexpToRegexp","groups","arrayToRegexp","parts","pathToRegexp","stringToRegexp","tokensToRegExp","strict","end","route","lastToken","endsWithSlash","token","arr","call"],"mappings":"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AAIsE,SACfC,WAAa1D,QAAQ,kBAGrB2D,MAAQ,SAASpB,EAAQqB,EAAM5C,EAAS5B,GAMhB,IAAtBwE,EAAKC,QAAQ,OACfD,EAAOJ,SAAWI,GAGpBE,KAAKvB,OAASA,EACduB,KAAKd,QACLc,KAAKC,OAASL,WAAWE,EAAME,KAAKd,MACpCc,KAAK1E,QAAUA,EACf0E,KAAK9C,QAAUA,EAGjB2C,OAAMK,UAAUC,YAAc,SAAS9E,GACrC,GAAI8B,GAAQ6C,KAAKC,OAAOG,KAAK/E,GACzBgF,IAIJ,OAHAL,MAAKd,KAAKoB,QAAQ,SAASC,EAAKC,GAC9BH,EAAOE,EAAIE,MAAQtD,EAAMqD,EAAQ,KAE5B,SAASpD,GACd,MAAO4C,MAAK9C,QAAQE,EAASiD,EAAQL,KAAK1E,UAC1C0B,KAAKgD,OAGT1C,OAAOC,QAAUsC;;ALnDjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;ASpFA,YAGA,SAASlC,YAAWP,EAASiD,EAAQ/E,GAEnC,MADAC,SAAQc,MAAM,0BAA4Be,EAAQ/B,IAAM,IAAKC,GACtDC,QAAQC,UAAUF,GAASG,KAAK,SAASL,GAC9C,MAAOA,GAAM+B,MAAMC,GAAS3B,KAAK,SAAU+C,GACzC,MAAIA,GACKA,EAGFjD,QAAQ6C,cAAchB,EAAS9B,OAV5C,GAAIC,SA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","file":"bundle.js","sourcesContent":["(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})","/*\n Copyright 2014 Google Inc. All Rights Reserved.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n'use strict';\n\nvar Route = require('./route');\n\nfunction regexEscape(s) {\n return s.replace(/[-\\/\\\\^$*+?.()|[\\]{}]/g, '\\\\$&');\n}\n\nvar keyMatch = function(map, string) {\n for (var item of map) {\n var pattern = new RegExp(item[0]), value = item[1];\n if (pattern.test(string)) {\n return value;\n }\n }\n return null;\n};\n\nvar Router = function() {\n this.routes = new Map();\n this.default = null;\n};\n\n['get', 'post', 'put', 'delete', 'head', 'any'].forEach(function(method) {\n Router.prototype[method] = function(path, handler, options) {\n return this.add(method, path, handler, options);\n };\n});\n\nRouter.prototype.add = function(method, path, handler, options) {\n options = options || {};\n var origin = options.origin || self.location.origin;\n if (origin instanceof RegExp) {\n origin = origin.source;\n } else {\n origin = regexEscape(origin);\n }\n method = method.toLowerCase();\n\n var route = new Route(method, path, handler, options);\n\n if (!this.routes.has(origin)) {\n this.routes.set(origin, new Map());\n }\n\n var methodMap = this.routes.get(origin);\n if (!methodMap.has(method)) {\n methodMap.set(method, new Map());\n }\n\n var routeMap = methodMap.get(method);\n routeMap.set(route.regexp.source, route);\n};\n\nRouter.prototype.matchMethod = function(method, url) {\n url = new URL(url);\n var origin = url.origin;\n var path = url.pathname;\n method = method.toLowerCase();\n\n var methods = keyMatch(this.routes, origin);\n if (!methods) {\n return null;\n }\n\n var routes = methods.get(method);\n if (!routes) {\n return null;\n }\n\n var route = keyMatch(routes, path);\n\n if (route) {\n return route.makeHandler(path);\n }\n\n return null;\n};\n\nRouter.prototype.match = function(request) {\n return this.matchMethod(request.method, request.url) || this.matchMethod('any', request.url);\n};\n\nmodule.exports = new Router();\n","/*\n Copyright 2014 Google Inc. All Rights Reserved.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n'use strict';\n\nrequire('serviceworker-cache-polyfill');\nvar options = require('./options');\nvar router = require('./router');\nvar helpers = require('./helpers');\nvar strategies = require('./strategies');\n\nhelpers.debug('Service Worker Toolbox is loading');\n\n// Install\n\nself.addEventListener('install', function(event) {\n var inactiveCache = options.cacheName + '$$$inactive$$$';\n helpers.debug('install event fired');\n helpers.debug('creating cache [' + inactiveCache + ']');\n helpers.debug('preCache list: ' + (options.preCacheItems.join(', ') || '(none)'));\n event.waitUntil(\n helpers.openCache({cacheName: inactiveCache}).then(function(cache) {\n return Promise.all(options.preCacheItems).then(cache.addAll.bind(cache));\n })\n );\n});\n\n// Activate\n\nself.addEventListener('activate', function(event) {\n helpers.debug('activate event fired');\n var inactiveCache = options.cacheName + '$$$inactive$$$';\n event.waitUntil(helpers.renameCache(inactiveCache, options.cacheName));\n});\n\n// Fetch\n\nself.addEventListener('fetch', function(event) {\n var handler = router.match(event.request);\n\n if (handler) {\n event.respondWith(handler(event.request));\n } else if (router.default) {\n event.respondWith(router.default(event.request));\n }\n});\n\n// Caching\n\nfunction cache(url, options) {\n return helpers.openCache(options).then(function(cache) {\n return cache.add(url);\n });\n}\n\nfunction uncache(url, options) {\n return helpers.openCache(options).then(function(cache) {\n return cache.delete(url);\n });\n}\n\nfunction precache(items) {\n if (!Array.isArray(items)) {\n items = [items];\n }\n options.preCacheItems = options.preCacheItems.concat(items);\n}\n\nmodule.exports = {\n networkOnly: strategies.networkOnly,\n networkFirst: strategies.networkFirst,\n cacheOnly: strategies.cacheOnly,\n cacheFirst: strategies.cacheFirst,\n fastest: strategies.fastest,\n router: router,\n options: options,\n cache: cache,\n uncache: uncache,\n precache: precache\n};\n","/*\n Copyright 2014 Google Inc. All Rights Reserved.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n'use strict';\n\nvar globalOptions = require('./options');\n\nfunction debug(message, options) {\n options = options || {};\n var flag = options.debug || globalOptions.debug;\n if (flag) {\n console.log('[sw-toolbox] ' + message);\n }\n}\n\nfunction openCache(options) {\n options = options || {};\n var cacheName = options.cacheName || globalOptions.cacheName;\n debug('Opening cache \"' + cacheName + '\"', options);\n return caches.open(cacheName);\n}\n\nfunction fetchAndCache(request, options) {\n options = options || {};\n var successResponses = options.successResponses || globalOptions.successResponses;\n return fetch(request.clone()).then(function(response) {\n\n // Only cache GET requests with successful responses\n if (request.method === 'GET' && successResponses.test(response.status)) {\n openCache(options).then(function(cache) {\n cache.put(request, response);\n });\n }\n\n return response.clone();\n });\n}\n\nfunction renameCache(source, destination, options) {\n debug('Renaming cache: [' + source + '] to [' + destination + ']', options);\n return caches.delete(destination).then(function() {\n return Promise.all([\n caches.open(source),\n caches.open(destination)\n ]).then(function(results) {\n var sourceCache = results[0];\n var destCache = results[1];\n\n return sourceCache.keys().then(function(requests) {\n return Promise.all(requests.map(function(request) {\n return sourceCache.match(request).then(function(response) {\n return destCache.put(request, response);\n });\n }));\n }).then(function() {\n return caches.delete(source);\n });\n });\n });\n}\n\nmodule.exports = {\n debug: debug,\n fetchAndCache: fetchAndCache,\n openCache: openCache,\n renameCache: renameCache\n};\n","/*\n\tCopyright 2014 Google Inc. All Rights Reserved.\n\n\tLicensed under the Apache License, Version 2.0 (the \"License\");\n\tyou may not use this file except in compliance with the License.\n\tYou may obtain a copy of the License at\n\n\t http://www.apache.org/licenses/LICENSE-2.0\n\n\tUnless required by applicable law or agreed to in writing, software\n\tdistributed under the License is distributed on an \"AS IS\" BASIS,\n\tWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\tSee the License for the specific language governing permissions and\n\tlimitations under the License.\n*/\n'use strict';\n\n// TODO: This is necessary to handle different implementations in the wild\n// The spec defines self.registration, but it was not implemented in Chrome 40.\nvar scope;\nif (self.registration) {\n scope = self.registration.scope;\n} else {\n scope = self.scope || new URL('./', self.location).href;\n}\n\nmodule.exports = {\n\tcacheName: '$$$toolbox-cache$$$' + scope + '$$$',\n\tdebug: false,\n\tpreCacheItems: [],\n\t// A regular expression to apply to HTTP response codes. Codes that match\n\t// will be considered successes, while others will not, and will not be\n\t// cached.\n\tsuccessResponses: /^0|([123]\\d\\d)|(40[14567])|410$/,\n};\n","/*\n\tCopyright 2014 Google Inc. All Rights Reserved.\n\n\tLicensed under the Apache License, Version 2.0 (the \"License\");\n\tyou may not use this file except in compliance with the License.\n\tYou may obtain a copy of the License at\n\n\t http://www.apache.org/licenses/LICENSE-2.0\n\n\tUnless required by applicable law or agreed to in writing, software\n\tdistributed under the License is distributed on an \"AS IS\" BASIS,\n\tWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\tSee the License for the specific language governing permissions and\n\tlimitations under the License.\n*/\nmodule.exports = {\n networkOnly: require('./networkOnly'),\n networkFirst: require('./networkFirst'),\n cacheOnly: require('./cacheOnly'),\n cacheFirst: require('./cacheFirst'),\n fastest: require('./fastest')\t\n};","/*\n Copyright 2014 Google Inc. All Rights Reserved.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n'use strict';\n\n//TODO: Use self.registration.scope instead of self.location\nvar url = new URL('./', self.location);\nvar basePath = url.pathname;\nvar pathRegexp = require('path-to-regexp');\n\n\nvar Route = function(method, path, handler, options) {\n // The URL() constructor can't parse express-style routes as they are not\n // valid urls. This means we have to manually manipulate relative urls into\n // absolute ones. This check is extremely naive but implementing a tweaked\n // version of the full algorithm seems like overkill\n // (https://url.spec.whatwg.org/#concept-basic-url-parser)\n if (path.indexOf('/') !== 0) {\n path = basePath + path;\n }\n\n this.method = method;\n this.keys = [];\n this.regexp = pathRegexp(path, this.keys);\n this.options = options;\n this.handler = handler;\n};\n\nRoute.prototype.makeHandler = function(url) {\n var match = this.regexp.exec(url);\n var values = {};\n this.keys.forEach(function(key, index) {\n values[key.name] = match[index + 1];\n });\n return function(request) {\n return this.handler(request, values, this.options);\n }.bind(this);\n};\n\nmodule.exports = Route;\n","/*\n\tCopyright 2014 Google Inc. All Rights Reserved.\n\n\tLicensed under the Apache License, Version 2.0 (the \"License\");\n\tyou may not use this file except in compliance with the License.\n\tYou may obtain a copy of the License at\n\n\t http://www.apache.org/licenses/LICENSE-2.0\n\n\tUnless required by applicable law or agreed to in writing, software\n\tdistributed under the License is distributed on an \"AS IS\" BASIS,\n\tWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\tSee the License for the specific language governing permissions and\n\tlimitations under the License.\n*/\n'use strict';\nvar helpers = require('../helpers');\n\nfunction networkOnly(request, values, options) {\n helpers.debug('Strategy: network only [' + request.url + ']', options);\n return fetch(request);\n}\n\nmodule.exports = networkOnly;","/*\n Copyright 2014 Google Inc. All Rights Reserved.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n'use strict';\nvar globalOptions = require('../options');\nvar helpers = require('../helpers');\n\nfunction networkFirst(request, values, options) {\n options = options || {};\n var successResponses = options.successResponses || globalOptions.successResponses;\n helpers.debug('Strategy: network first [' + request.url + ']', options);\n return helpers.openCache(options).then(function(cache) {\n return helpers.fetchAndCache(request, options).then(function(response) {\n if (successResponses.test(response.status)) {\n return response;\n }\n\n return cache.match(request).then(function(cacheResponse) {\n helpers.debug('Response was an HTTP error', options);\n if (cacheResponse) {\n helpers.debug('Resolving with cached response instead', options);\n return cacheResponse;\n } else {\n // If we didn't have anything in the cache, it's better to return the\n // error page than to return nothing\n helpers.debug('No cached result, resolving with HTTP error response from network', options);\n return response;\n }\n });\n }).catch(function(error) {\n helpers.debug('Network error, fallback to cache [' + request.url + ']', options);\n return cache.match(request);\n });\n });\n}\n\nmodule.exports = networkFirst;","/*\n\tCopyright 2014 Google Inc. All Rights Reserved.\n\n\tLicensed under the Apache License, Version 2.0 (the \"License\");\n\tyou may not use this file except in compliance with the License.\n\tYou may obtain a copy of the License at\n\n\t http://www.apache.org/licenses/LICENSE-2.0\n\n\tUnless required by applicable law or agreed to in writing, software\n\tdistributed under the License is distributed on an \"AS IS\" BASIS,\n\tWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\tSee the License for the specific language governing permissions and\n\tlimitations under the License.\n*/\n'use strict';\nvar helpers = require('../helpers');\n\nfunction cacheOnly(request, values, options) {\n helpers.debug('Strategy: cache only [' + request.url + ']', options);\n return helpers.openCache(options).then(function(cache) {\n return cache.match(request);\n });\n}\n\nmodule.exports = cacheOnly;\n","/*\n\tCopyright 2014 Google Inc. All Rights Reserved.\n\n\tLicensed under the Apache License, Version 2.0 (the \"License\");\n\tyou may not use this file except in compliance with the License.\n\tYou may obtain a copy of the License at\n\n\t http://www.apache.org/licenses/LICENSE-2.0\n\n\tUnless required by applicable law or agreed to in writing, software\n\tdistributed under the License is distributed on an \"AS IS\" BASIS,\n\tWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\tSee the License for the specific language governing permissions and\n\tlimitations under the License.\n*/\n'use strict';\nvar helpers = require('../helpers');\n\nfunction cacheFirst(request, values, options) {\n helpers.debug('Strategy: cache first [' + request.url + ']', options);\n return helpers.openCache(options).then(function(cache) {\n return cache.match(request).then(function (response) {\n if (response) {\n return response;\n }\n\n return helpers.fetchAndCache(request, options);\n });\n });\n}\n\nmodule.exports = cacheFirst;","/*\n Copyright 2014 Google Inc. All Rights Reserved.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n'use strict';\nvar helpers = require('../helpers');\nvar cacheOnly = require('./cacheOnly');\n\nfunction fastest(request, values, options) {\n helpers.debug('Strategy: fastest [' + request.url + ']', options);\n var rejected = false;\n var reasons = [];\n\n var maybeReject = function(reason) {\n reasons.push(reason.toString());\n if (rejected) {\n return Promise.reject(new Error('Both cache and network failed: \"' + reasons.join('\", \"') + '\"'));\n }\n rejected = true;\n };\n\n return new Promise(function(resolve, reject) {\n helpers.fetchAndCache(request.clone(), options).then(resolve, maybeReject);\n cacheOnly(request, options).then(resolve, maybeReject);\n });\n}\n\nmodule.exports = fastest;","if (!Cache.prototype.add) {\n Cache.prototype.add = function add(request) {\n return this.addAll([request]);\n };\n}\n\nif (!Cache.prototype.addAll) {\n Cache.prototype.addAll = function addAll(requests) {\n var cache = this;\n\n // Since DOMExceptions are not constructable:\n function NetworkError(message) {\n this.name = 'NetworkError';\n this.code = 19;\n this.message = message;\n }\n NetworkError.prototype = Object.create(Error.prototype);\n\n return Promise.resolve().then(function() {\n if (arguments.length < 1) throw new TypeError();\n \n // Simulate sequence<(Request or USVString)> binding:\n var sequence = [];\n\n requests = requests.map(function(request) {\n if (request instanceof Request) {\n return request;\n }\n else {\n return String(request); // may throw TypeError\n }\n });\n\n return Promise.all(\n requests.map(function(request) {\n if (typeof request === 'string') {\n request = new Request(request);\n }\n\n var scheme = new URL(request.url).protocol;\n\n if (scheme !== 'http:' && scheme !== 'https:') {\n throw new NetworkError(\"Invalid scheme\");\n }\n\n return fetch(request.clone());\n })\n );\n }).then(function(responses) {\n // TODO: check that requests don't overwrite one another\n // (don't think this is possible to polyfill due to opaque responses)\n return Promise.all(\n responses.map(function(response, i) {\n return cache.put(requests[i], response);\n })\n );\n }).then(function() {\n return undefined;\n });\n };\n}\n","var isarray = require('isarray')\n\n/**\n * Expose `pathToRegexp`.\n */\nmodule.exports = pathToRegexp\nmodule.exports.parse = parse\nmodule.exports.compile = compile\nmodule.exports.tokensToFunction = tokensToFunction\nmodule.exports.tokensToRegExp = tokensToRegExp\n\n/**\n * The main path matching regexp utility.\n *\n * @type {RegExp}\n */\nvar PATH_REGEXP = new RegExp([\n // Match escaped characters that would otherwise appear in future matches.\n // This allows the user to escape special characters that won't transform.\n '(\\\\\\\\.)',\n // Match Express-style parameters and un-named parameters with a prefix\n // and optional suffixes. Matches appear as:\n //\n // \"/:test(\\\\d+)?\" => [\"/\", \"test\", \"\\d+\", undefined, \"?\", undefined]\n // \"/route(\\\\d+)\" => [undefined, undefined, undefined, \"\\d+\", undefined, undefined]\n // \"/*\" => [\"/\", undefined, undefined, undefined, undefined, \"*\"]\n '([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^()])+)\\\\))([+*?])?|(\\\\*))'\n].join('|'), 'g')\n\n/**\n * Parse a string for the raw tokens.\n *\n * @param {String} str\n * @return {Array}\n */\nfunction parse (str) {\n var tokens = []\n var key = 0\n var index = 0\n var path = ''\n var res\n\n while ((res = PATH_REGEXP.exec(str)) != null) {\n var m = res[0]\n var escaped = res[1]\n var offset = res.index\n path += str.slice(index, offset)\n index = offset + m.length\n\n // Ignore already escaped sequences.\n if (escaped) {\n path += escaped[1]\n continue\n }\n\n // Push the current path onto the tokens.\n if (path) {\n tokens.push(path)\n path = ''\n }\n\n var prefix = res[2]\n var name = res[3]\n var capture = res[4]\n var group = res[5]\n var suffix = res[6]\n var asterisk = res[7]\n\n var repeat = suffix === '+' || suffix === '*'\n var optional = suffix === '?' || suffix === '*'\n var delimiter = prefix || '/'\n var pattern = capture || group || (asterisk ? '.*' : '[^' + delimiter + ']+?')\n\n tokens.push({\n name: name || key++,\n prefix: prefix || '',\n delimiter: delimiter,\n optional: optional,\n repeat: repeat,\n pattern: escapeGroup(pattern)\n })\n }\n\n // Match any characters still remaining.\n if (index < str.length) {\n path += str.substr(index)\n }\n\n // If the path exists, push it onto the end.\n if (path) {\n tokens.push(path)\n }\n\n return tokens\n}\n\n/**\n * Compile a string to a template function for the path.\n *\n * @param {String} str\n * @return {Function}\n */\nfunction compile (str) {\n return tokensToFunction(parse(str))\n}\n\n/**\n * Expose a method for transforming tokens into the path function.\n */\nfunction tokensToFunction (tokens) {\n // Compile all the tokens into regexps.\n var matches = new Array(tokens.length)\n\n // Compile all the patterns before compilation.\n for (var i = 0; i < tokens.length; i++) {\n if (typeof tokens[i] === 'object') {\n matches[i] = new RegExp('^' + tokens[i].pattern + '$')\n }\n }\n\n return function (obj) {\n var path = ''\n\n obj = obj || {}\n\n for (var i = 0; i < tokens.length; i++) {\n var key = tokens[i]\n\n if (typeof key === 'string') {\n path += key\n\n continue\n }\n\n var value = obj[key.name]\n\n if (value == null) {\n if (key.optional) {\n continue\n } else {\n throw new TypeError('Expected \"' + key.name + '\" to be defined')\n }\n }\n\n if (isarray(value)) {\n if (!key.repeat) {\n throw new TypeError('Expected \"' + key.name + '\" to not repeat')\n }\n\n if (value.length === 0) {\n if (key.optional) {\n continue\n } else {\n throw new TypeError('Expected \"' + key.name + '\" to not be empty')\n }\n }\n\n for (var j = 0; j < value.length; j++) {\n if (!matches[i].test(value[j])) {\n throw new TypeError('Expected all \"' + key.name + '\" to match \"' + key.pattern + '\"')\n }\n\n path += (j === 0 ? key.prefix : key.delimiter) + encodeURIComponent(value[j])\n }\n\n continue\n }\n\n if (!matches[i].test(value)) {\n throw new TypeError('Expected \"' + key.name + '\" to match \"' + key.pattern + '\"')\n }\n\n path += key.prefix + encodeURIComponent(value)\n }\n\n return path\n }\n}\n\n/**\n * Escape a regular expression string.\n *\n * @param {String} str\n * @return {String}\n */\nfunction escapeString (str) {\n return str.replace(/([.+*?=^!:${}()[\\]|\\/])/g, '\\\\$1')\n}\n\n/**\n * Escape the capturing group by escaping special characters and meaning.\n *\n * @param {String} group\n * @return {String}\n */\nfunction escapeGroup (group) {\n return group.replace(/([=!:$\\/()])/g, '\\\\$1')\n}\n\n/**\n * Attach the keys as a property of the regexp.\n *\n * @param {RegExp} re\n * @param {Array} keys\n * @return {RegExp}\n */\nfunction attachKeys (re, keys) {\n re.keys = keys\n return re\n}\n\n/**\n * Get the flags for a regexp from the options.\n *\n * @param {Object} options\n * @return {String}\n */\nfunction flags (options) {\n return options.sensitive ? '' : 'i'\n}\n\n/**\n * Pull out keys from a regexp.\n *\n * @param {RegExp} path\n * @param {Array} keys\n * @return {RegExp}\n */\nfunction regexpToRegexp (path, keys) {\n // Use a negative lookahead to match only capturing groups.\n var groups = path.source.match(/\\((?!\\?)/g)\n\n if (groups) {\n for (var i = 0; i < groups.length; i++) {\n keys.push({\n name: i,\n prefix: null,\n delimiter: null,\n optional: false,\n repeat: false,\n pattern: null\n })\n }\n }\n\n return attachKeys(path, keys)\n}\n\n/**\n * Transform an array into a regexp.\n *\n * @param {Array} path\n * @param {Array} keys\n * @param {Object} options\n * @return {RegExp}\n */\nfunction arrayToRegexp (path, keys, options) {\n var parts = []\n\n for (var i = 0; i < path.length; i++) {\n parts.push(pathToRegexp(path[i], keys, options).source)\n }\n\n var regexp = new RegExp('(?:' + parts.join('|') + ')', flags(options))\n\n return attachKeys(regexp, keys)\n}\n\n/**\n * Create a path regexp from string input.\n *\n * @param {String} path\n * @param {Array} keys\n * @param {Object} options\n * @return {RegExp}\n */\nfunction stringToRegexp (path, keys, options) {\n var tokens = parse(path)\n var re = tokensToRegExp(tokens, options)\n\n // Attach keys back to the regexp.\n for (var i = 0; i < tokens.length; i++) {\n if (typeof tokens[i] !== 'string') {\n keys.push(tokens[i])\n }\n }\n\n return attachKeys(re, keys)\n}\n\n/**\n * Expose a function for taking tokens and returning a RegExp.\n *\n * @param {Array} tokens\n * @param {Array} keys\n * @param {Object} options\n * @return {RegExp}\n */\nfunction tokensToRegExp (tokens, options) {\n options = options || {}\n\n var strict = options.strict\n var end = options.end !== false\n var route = ''\n var lastToken = tokens[tokens.length - 1]\n var endsWithSlash = typeof lastToken === 'string' && /\\/$/.test(lastToken)\n\n // Iterate over the tokens and create our regexp string.\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i]\n\n if (typeof token === 'string') {\n route += escapeString(token)\n } else {\n var prefix = escapeString(token.prefix)\n var capture = token.pattern\n\n if (token.repeat) {\n capture += '(?:' + prefix + capture + ')*'\n }\n\n if (token.optional) {\n if (prefix) {\n capture = '(?:' + prefix + '(' + capture + '))?'\n } else {\n capture = '(' + capture + ')?'\n }\n } else {\n capture = prefix + '(' + capture + ')'\n }\n\n route += capture\n }\n }\n\n // In non-strict mode we allow a slash at the end of match. If the path to\n // match already ends with a slash, we remove it for consistency. The slash\n // is valid at the end of a path match, not in the middle. This is important\n // in non-ending mode, where \"/test/\" shouldn't match \"/test//route\".\n if (!strict) {\n route = (endsWithSlash ? route.slice(0, -2) : route) + '(?:\\\\/(?=$))?'\n }\n\n if (end) {\n route += '$'\n } else {\n // In non-ending mode, we need the capturing groups to match as much as\n // possible by using a positive lookahead to the end or next path segment.\n route += strict && endsWithSlash ? '' : '(?=\\\\/|$)'\n }\n\n return new RegExp('^' + route, flags(options))\n}\n\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n *\n * @param {(String|RegExp|Array)} path\n * @param {Array} [keys]\n * @param {Object} [options]\n * @return {RegExp}\n */\nfunction pathToRegexp (path, keys, options) {\n keys = keys || []\n\n if (!isarray(keys)) {\n options = keys\n keys = []\n } else if (!options) {\n options = {}\n }\n\n if (path instanceof RegExp) {\n return regexpToRegexp(path, keys, options)\n }\n\n if (isarray(path)) {\n return arrayToRegexp(path, keys, options)\n }\n\n return stringToRegexp(path, keys, options)\n}\n","module.exports = Array.isArray || function (arr) {\n return Object.prototype.toString.call(arr) == '[object Array]';\n};\n"]} | ||
{"version":3,"sources":["node_modules/browserify/node_modules/browser-pack/_prelude.js","lib/router.js","lib/sw-toolbox.js","lib/options.js","lib/helpers.js","lib/strategies/index.js","lib/route.js","node_modules/serviceworker-cache-polyfill/index.js","lib/strategies/networkOnly.js","lib/strategies/networkFirst.js","lib/strategies/cacheFirst.js","lib/strategies/cacheOnly.js","lib/strategies/fastest.js","node_modules/path-to-regexp/index.js","node_modules/path-to-regexp/node_modules/isarray/index.js"],"names":["cache","url","options","helpers","openCache","then","add","uncache","precache","items","Array","isArray","preCacheItems","concat","require","router","strategies","debug","flatten","reduce","a","b","self","addEventListener","event","inactiveCache","cacheName","waitUntil","Promise","all","join","addAll","renameCache","handler","match","request","respondWith","module","exports","networkOnly","networkFirst","cacheOnly","cacheFirst","fastest","scope","registration","URL","location","href","successResponses","message","flag","globalOptions","console","log","caches","open","fetchAndCache","fetch","clone","response","method","test","status","put","source","destination","results","sourceCache","destCache","keys","requests","map","basePath","pathname","pathRegexp","Route","path","indexOf","this","regexp","prototype","makeHandler","exec","values","forEach","key","index","name","bind","Cache","NetworkError","code","Object","create","Error","resolve","arguments","length","TypeError","Request","String","scheme","protocol","responses","i","undefined","cacheResponse","error","reject","rejected","reasons","maybeReject","reason","push","toString","maybeResolve","result","Response","parse","str","res","tokens","PATH_REGEXP","m","escaped","offset","slice","prefix","capture","group","suffix","asterisk","repeat","optional","delimiter","pattern","escapeGroup","substr","compile","tokensToFunction","matches","RegExp","obj","value","isarray","j","encodeURIComponent","escapeString","replace","attachKeys","re","flags","sensitive","regexpToRegexp","groups","arrayToRegexp","parts","pathToRegexp","stringToRegexp","tokensToRegExp","strict","end","route","lastToken","endsWithSlash","token","arr","call"],"mappings":"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C3C3B,OAAO,EACPL,iBAIAqC,iBAAkB;;AGlBnB,YAGA,IAAIhD,KAAM,GAAI6C,KAAI,KAAMxB,KAAKyB,UACzB0B,SAAWxE,IAAIyE,SACfC,WAAa7D,QAAQ,kBAGrB8D,MAAQ,SAASf,EAAQgB,EAAM5C,EAAS/B,GAMhB,IAAtB2E,EAAKC,QAAQ,OACfD,EAAOJ,SAAWI,GAGpBE,KAAKlB,OAASA,EACdkB,KAAKT,QACLS,KAAKC,OAASL,WAAWE,EAAME,KAAKT,MACpCS,KAAK7E,QAAUA,EACf6E,KAAK9C,QAAUA,EAGjB2C,OAAMK,UAAUC,YAAc,SAASjF,GACrC,GAAIiC,GAAQ6C,KAAKC,OAAOG,KAAKlF,GACzBmF,IAIJ,OAHAL,MAAKT,KAAKe,QAAQ,SAASC,EAAKC,GAC9BH,EAAOE,EAAIE,MAAQtD,EAAMqD,EAAQ,KAE5B,SAASpD,GACd,MAAO4C,MAAK9C,QAAQE,EAASiD,EAAQL,KAAK7E,UAC1CuF,KAAKV,OAGT1C,OAAOC,QAAUsC;;ALnDjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;ASpFA,YAGA,SAASlC,YAAWP,EAASiD,EAAQlF,GAEnC,MADAC,SAAQc,MAAM,0BAA4BkB,EAAQlC,IAAM,IAAKC,GACtDC,QAAQC,UAAUF,GAASG,KAAK,SAASL,GAC9C,M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","file":"bundle.js","sourcesContent":["(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})","/*\n Copyright 2014 Google Inc. All Rights Reserved.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n'use strict';\n\nvar Route = require('./route');\n\nfunction regexEscape(s) {\n return s.replace(/[-\\/\\\\^$*+?.()|[\\]{}]/g, '\\\\$&');\n}\n\nvar keyMatch = function(map, string) {\n for (var item of map) {\n var pattern = new RegExp(item[0]), value = item[1];\n if (pattern.test(string)) {\n return value;\n }\n }\n return null;\n};\n\nvar Router = function() {\n this.routes = new Map();\n this.default = null;\n};\n\n['get', 'post', 'put', 'delete', 'head', 'any'].forEach(function(method) {\n Router.prototype[method] = function(path, handler, options) {\n return this.add(method, path, handler, options);\n };\n});\n\nRouter.prototype.add = function(method, path, handler, options) {\n options = options || {};\n var origin = options.origin || self.location.origin;\n if (origin instanceof RegExp) {\n origin = origin.source;\n } else {\n origin = regexEscape(origin);\n }\n method = method.toLowerCase();\n\n var route = new Route(method, path, handler, options);\n\n if (!this.routes.has(origin)) {\n this.routes.set(origin, new Map());\n }\n\n var methodMap = this.routes.get(origin);\n if (!methodMap.has(method)) {\n methodMap.set(method, new Map());\n }\n\n var routeMap = methodMap.get(method);\n routeMap.set(route.regexp.source, route);\n};\n\nRouter.prototype.matchMethod = function(method, url) {\n url = new URL(url);\n var origin = url.origin;\n var path = url.pathname;\n method = method.toLowerCase();\n\n var methods = keyMatch(this.routes, origin);\n if (!methods) {\n return null;\n }\n\n var routes = methods.get(method);\n if (!routes) {\n return null;\n }\n\n var route = keyMatch(routes, path);\n\n if (route) {\n return route.makeHandler(path);\n }\n\n return null;\n};\n\nRouter.prototype.match = function(request) {\n return this.matchMethod(request.method, request.url) || this.matchMethod('any', request.url);\n};\n\nmodule.exports = new Router();\n","/*\n Copyright 2014 Google Inc. All Rights Reserved.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n'use strict';\n\nrequire('serviceworker-cache-polyfill');\nvar options = require('./options');\nvar router = require('./router');\nvar helpers = require('./helpers');\nvar strategies = require('./strategies');\n\nhelpers.debug('Service Worker Toolbox is loading');\n\n// Install\n\nvar flatten = function(items) {\n return items.reduce(function(a, b) {\n return a.concat(b);\n }, []);\n};\n\nself.addEventListener('install', function(event) {\n var inactiveCache = options.cacheName + '$$$inactive$$$';\n helpers.debug('install event fired');\n helpers.debug('creating cache [' + inactiveCache + ']');\n event.waitUntil(\n helpers.openCache({cacheName: inactiveCache}).then(function(cache) {\n return Promise.all(options.preCacheItems)\n .then(flatten)\n .then(function(preCacheItems) {\n helpers.debug('preCache list: ' + (preCacheItems.join(', ') || '(none)'));\n return cache.addAll(preCacheItems);\n });\n })\n );\n});\n\n// Activate\n\nself.addEventListener('activate', function(event) {\n helpers.debug('activate event fired');\n var inactiveCache = options.cacheName + '$$$inactive$$$';\n event.waitUntil(helpers.renameCache(inactiveCache, options.cacheName));\n});\n\n// Fetch\n\nself.addEventListener('fetch', function(event) {\n var handler = router.match(event.request);\n\n if (handler) {\n event.respondWith(handler(event.request));\n } else if (router.default) {\n event.respondWith(router.default(event.request));\n }\n});\n\n// Caching\n\nfunction cache(url, options) {\n return helpers.openCache(options).then(function(cache) {\n return cache.add(url);\n });\n}\n\nfunction uncache(url, options) {\n return helpers.openCache(options).then(function(cache) {\n return cache.delete(url);\n });\n}\n\nfunction precache(items) {\n if (!Array.isArray(items)) {\n items = [items];\n }\n options.preCacheItems = options.preCacheItems.concat(items);\n}\n\nmodule.exports = {\n networkOnly: strategies.networkOnly,\n networkFirst: strategies.networkFirst,\n cacheOnly: strategies.cacheOnly,\n cacheFirst: strategies.cacheFirst,\n fastest: strategies.fastest,\n router: router,\n options: options,\n cache: cache,\n uncache: uncache,\n precache: precache\n};\n","/*\n\tCopyright 2014 Google Inc. All Rights Reserved.\n\n\tLicensed under the Apache License, Version 2.0 (the \"License\");\n\tyou may not use this file except in compliance with the License.\n\tYou may obtain a copy of the License at\n\n\t http://www.apache.org/licenses/LICENSE-2.0\n\n\tUnless required by applicable law or agreed to in writing, software\n\tdistributed under the License is distributed on an \"AS IS\" BASIS,\n\tWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\tSee the License for the specific language governing permissions and\n\tlimitations under the License.\n*/\n'use strict';\n\n// TODO: This is necessary to handle different implementations in the wild\n// The spec defines self.registration, but it was not implemented in Chrome 40.\nvar scope;\nif (self.registration) {\n scope = self.registration.scope;\n} else {\n scope = self.scope || new URL('./', self.location).href;\n}\n\nmodule.exports = {\n\tcacheName: '$$$toolbox-cache$$$' + scope + '$$$',\n\tdebug: false,\n\tpreCacheItems: [],\n\t// A regular expression to apply to HTTP response codes. Codes that match\n\t// will be considered successes, while others will not, and will not be\n\t// cached.\n\tsuccessResponses: /^0|([123]\\d\\d)|(40[14567])|410$/,\n};\n","/*\n Copyright 2014 Google Inc. All Rights Reserved.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n'use strict';\n\nvar globalOptions = require('./options');\n\nfunction debug(message, options) {\n options = options || {};\n var flag = options.debug || globalOptions.debug;\n if (flag) {\n console.log('[sw-toolbox] ' + message);\n }\n}\n\nfunction openCache(options) {\n options = options || {};\n var cacheName = options.cacheName || globalOptions.cacheName;\n debug('Opening cache \"' + cacheName + '\"', options);\n return caches.open(cacheName);\n}\n\nfunction fetchAndCache(request, options) {\n options = options || {};\n var successResponses = options.successResponses || globalOptions.successResponses;\n return fetch(request.clone()).then(function(response) {\n\n // Only cache GET requests with successful responses\n if (request.method === 'GET' && successResponses.test(response.status)) {\n openCache(options).then(function(cache) {\n cache.put(request, response);\n });\n }\n\n return response.clone();\n });\n}\n\nfunction renameCache(source, destination, options) {\n debug('Renaming cache: [' + source + '] to [' + destination + ']', options);\n return caches.delete(destination).then(function() {\n return Promise.all([\n caches.open(source),\n caches.open(destination)\n ]).then(function(results) {\n var sourceCache = results[0];\n var destCache = results[1];\n\n return sourceCache.keys().then(function(requests) {\n return Promise.all(requests.map(function(request) {\n return sourceCache.match(request).then(function(response) {\n return destCache.put(request, response);\n });\n }));\n }).then(function() {\n return caches.delete(source);\n });\n });\n });\n}\n\nmodule.exports = {\n debug: debug,\n fetchAndCache: fetchAndCache,\n openCache: openCache,\n renameCache: renameCache\n};\n","/*\n\tCopyright 2014 Google Inc. All Rights Reserved.\n\n\tLicensed under the Apache License, Version 2.0 (the \"License\");\n\tyou may not use this file except in compliance with the License.\n\tYou may obtain a copy of the License at\n\n\t http://www.apache.org/licenses/LICENSE-2.0\n\n\tUnless required by applicable law or agreed to in writing, software\n\tdistributed under the License is distributed on an \"AS IS\" BASIS,\n\tWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\tSee the License for the specific language governing permissions and\n\tlimitations under the License.\n*/\nmodule.exports = {\n networkOnly: require('./networkOnly'),\n networkFirst: require('./networkFirst'),\n cacheOnly: require('./cacheOnly'),\n cacheFirst: require('./cacheFirst'),\n fastest: require('./fastest')\t\n};","/*\n Copyright 2014 Google Inc. All Rights Reserved.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n'use strict';\n\n//TODO: Use self.registration.scope instead of self.location\nvar url = new URL('./', self.location);\nvar basePath = url.pathname;\nvar pathRegexp = require('path-to-regexp');\n\n\nvar Route = function(method, path, handler, options) {\n // The URL() constructor can't parse express-style routes as they are not\n // valid urls. This means we have to manually manipulate relative urls into\n // absolute ones. This check is extremely naive but implementing a tweaked\n // version of the full algorithm seems like overkill\n // (https://url.spec.whatwg.org/#concept-basic-url-parser)\n if (path.indexOf('/') !== 0) {\n path = basePath + path;\n }\n\n this.method = method;\n this.keys = [];\n this.regexp = pathRegexp(path, this.keys);\n this.options = options;\n this.handler = handler;\n};\n\nRoute.prototype.makeHandler = function(url) {\n var match = this.regexp.exec(url);\n var values = {};\n this.keys.forEach(function(key, index) {\n values[key.name] = match[index + 1];\n });\n return function(request) {\n return this.handler(request, values, this.options);\n }.bind(this);\n};\n\nmodule.exports = Route;\n","/**\n * Copyright 2015 Google Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\n */\n\nif (!Cache.prototype.add) {\n Cache.prototype.add = function add(request) {\n return this.addAll([request]);\n };\n}\n\nif (!Cache.prototype.addAll) {\n Cache.prototype.addAll = function addAll(requests) {\n var cache = this;\n\n // Since DOMExceptions are not constructable:\n function NetworkError(message) {\n this.name = 'NetworkError';\n this.code = 19;\n this.message = message;\n }\n NetworkError.prototype = Object.create(Error.prototype);\n\n return Promise.resolve().then(function() {\n if (arguments.length < 1) throw new TypeError();\n\n // Simulate sequence<(Request or USVString)> binding:\n var sequence = [];\n\n requests = requests.map(function(request) {\n if (request instanceof Request) {\n return request;\n }\n else {\n return String(request); // may throw TypeError\n }\n });\n\n return Promise.all(\n requests.map(function(request) {\n if (typeof request === 'string') {\n request = new Request(request);\n }\n\n var scheme = new URL(request.url).protocol;\n\n if (scheme !== 'http:' && scheme !== 'https:') {\n throw new NetworkError(\"Invalid scheme\");\n }\n\n return fetch(request.clone());\n })\n );\n }).then(function(responses) {\n // TODO: check that requests don't overwrite one another\n // (don't think this is possible to polyfill due to opaque responses)\n return Promise.all(\n responses.map(function(response, i) {\n return cache.put(requests[i], response);\n })\n );\n }).then(function() {\n return undefined;\n });\n };\n}\n","/*\n\tCopyright 2014 Google Inc. All Rights Reserved.\n\n\tLicensed under the Apache License, Version 2.0 (the \"License\");\n\tyou may not use this file except in compliance with the License.\n\tYou may obtain a copy of the License at\n\n\t http://www.apache.org/licenses/LICENSE-2.0\n\n\tUnless required by applicable law or agreed to in writing, software\n\tdistributed under the License is distributed on an \"AS IS\" BASIS,\n\tWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\tSee the License for the specific language governing permissions and\n\tlimitations under the License.\n*/\n'use strict';\nvar helpers = require('../helpers');\n\nfunction networkOnly(request, values, options) {\n helpers.debug('Strategy: network only [' + request.url + ']', options);\n return fetch(request);\n}\n\nmodule.exports = networkOnly;","/*\n Copyright 2014 Google Inc. All Rights Reserved.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n'use strict';\nvar globalOptions = require('../options');\nvar helpers = require('../helpers');\n\nfunction networkFirst(request, values, options) {\n options = options || {};\n var successResponses = options.successResponses || globalOptions.successResponses;\n helpers.debug('Strategy: network first [' + request.url + ']', options);\n return helpers.openCache(options).then(function(cache) {\n return helpers.fetchAndCache(request, options).then(function(response) {\n if (successResponses.test(response.status)) {\n return response;\n }\n\n return cache.match(request).then(function(cacheResponse) {\n helpers.debug('Response was an HTTP error', options);\n if (cacheResponse) {\n helpers.debug('Resolving with cached response instead', options);\n return cacheResponse;\n } else {\n // If we didn't have anything in the cache, it's better to return the\n // error page than to return nothing\n helpers.debug('No cached result, resolving with HTTP error response from network', options);\n return response;\n }\n });\n }).catch(function(error) {\n helpers.debug('Network error, fallback to cache [' + request.url + ']', options);\n return cache.match(request);\n });\n });\n}\n\nmodule.exports = networkFirst;","/*\n\tCopyright 2014 Google Inc. All Rights Reserved.\n\n\tLicensed under the Apache License, Version 2.0 (the \"License\");\n\tyou may not use this file except in compliance with the License.\n\tYou may obtain a copy of the License at\n\n\t http://www.apache.org/licenses/LICENSE-2.0\n\n\tUnless required by applicable law or agreed to in writing, software\n\tdistributed under the License is distributed on an \"AS IS\" BASIS,\n\tWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\tSee the License for the specific language governing permissions and\n\tlimitations under the License.\n*/\n'use strict';\nvar helpers = require('../helpers');\n\nfunction cacheFirst(request, values, options) {\n helpers.debug('Strategy: cache first [' + request.url + ']', options);\n return helpers.openCache(options).then(function(cache) {\n return cache.match(request).then(function (response) {\n if (response) {\n return response;\n }\n\n return helpers.fetchAndCache(request, options);\n });\n });\n}\n\nmodule.exports = cacheFirst;","/*\n\tCopyright 2014 Google Inc. All Rights Reserved.\n\n\tLicensed under the Apache License, Version 2.0 (the \"License\");\n\tyou may not use this file except in compliance with the License.\n\tYou may obtain a copy of the License at\n\n\t http://www.apache.org/licenses/LICENSE-2.0\n\n\tUnless required by applicable law or agreed to in writing, software\n\tdistributed under the License is distributed on an \"AS IS\" BASIS,\n\tWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\tSee the License for the specific language governing permissions and\n\tlimitations under the License.\n*/\n'use strict';\nvar helpers = require('../helpers');\n\nfunction cacheOnly(request, values, options) {\n helpers.debug('Strategy: cache only [' + request.url + ']', options);\n return helpers.openCache(options).then(function(cache) {\n return cache.match(request);\n });\n}\n\nmodule.exports = cacheOnly;\n","/*\n Copyright 2014 Google Inc. All Rights Reserved.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n'use strict';\nvar helpers = require('../helpers');\nvar cacheOnly = require('./cacheOnly');\n\nfunction fastest(request, values, options) {\n helpers.debug('Strategy: fastest [' + request.url + ']', options);\n\n return new Promise(function(resolve, reject) {\n var rejected = false;\n var reasons = [];\n\n var maybeReject = function(reason) {\n reasons.push(reason.toString());\n if (rejected) {\n reject(new Error('Both cache and network failed: \"' + reasons.join('\", \"') + '\"'));\n } else {\n rejected = true;\n }\n };\n\n var maybeResolve = function(result) {\n if (result instanceof Response) {\n resolve(result);\n } else {\n maybeReject('No result returned');\n }\n };\n\n helpers.fetchAndCache(request.clone(), options)\n .then(maybeResolve, maybeReject);\n\n cacheOnly(request, options)\n .then(maybeResolve, maybeReject);\n });\n}\n\nmodule.exports = fastest;\n","var isarray = require('isarray')\n\n/**\n * Expose `pathToRegexp`.\n */\nmodule.exports = pathToRegexp\nmodule.exports.parse = parse\nmodule.exports.compile = compile\nmodule.exports.tokensToFunction = tokensToFunction\nmodule.exports.tokensToRegExp = tokensToRegExp\n\n/**\n * The main path matching regexp utility.\n *\n * @type {RegExp}\n */\nvar PATH_REGEXP = new RegExp([\n // Match escaped characters that would otherwise appear in future matches.\n // This allows the user to escape special characters that won't transform.\n '(\\\\\\\\.)',\n // Match Express-style parameters and un-named parameters with a prefix\n // and optional suffixes. Matches appear as:\n //\n // \"/:test(\\\\d+)?\" => [\"/\", \"test\", \"\\d+\", undefined, \"?\", undefined]\n // \"/route(\\\\d+)\" => [undefined, undefined, undefined, \"\\d+\", undefined, undefined]\n // \"/*\" => [\"/\", undefined, undefined, undefined, undefined, \"*\"]\n '([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^()])+)\\\\))([+*?])?|(\\\\*))'\n].join('|'), 'g')\n\n/**\n * Parse a string for the raw tokens.\n *\n * @param {String} str\n * @return {Array}\n */\nfunction parse (str) {\n var tokens = []\n var key = 0\n var index = 0\n var path = ''\n var res\n\n while ((res = PATH_REGEXP.exec(str)) != null) {\n var m = res[0]\n var escaped = res[1]\n var offset = res.index\n path += str.slice(index, offset)\n index = offset + m.length\n\n // Ignore already escaped sequences.\n if (escaped) {\n path += escaped[1]\n continue\n }\n\n // Push the current path onto the tokens.\n if (path) {\n tokens.push(path)\n path = ''\n }\n\n var prefix = res[2]\n var name = res[3]\n var capture = res[4]\n var group = res[5]\n var suffix = res[6]\n var asterisk = res[7]\n\n var repeat = suffix === '+' || suffix === '*'\n var optional = suffix === '?' || suffix === '*'\n var delimiter = prefix || '/'\n var pattern = capture || group || (asterisk ? '.*' : '[^' + delimiter + ']+?')\n\n tokens.push({\n name: name || key++,\n prefix: prefix || '',\n delimiter: delimiter,\n optional: optional,\n repeat: repeat,\n pattern: escapeGroup(pattern)\n })\n }\n\n // Match any characters still remaining.\n if (index < str.length) {\n path += str.substr(index)\n }\n\n // If the path exists, push it onto the end.\n if (path) {\n tokens.push(path)\n }\n\n return tokens\n}\n\n/**\n * Compile a string to a template function for the path.\n *\n * @param {String} str\n * @return {Function}\n */\nfunction compile (str) {\n return tokensToFunction(parse(str))\n}\n\n/**\n * Expose a method for transforming tokens into the path function.\n */\nfunction tokensToFunction (tokens) {\n // Compile all the tokens into regexps.\n var matches = new Array(tokens.length)\n\n // Compile all the patterns before compilation.\n for (var i = 0; i < tokens.length; i++) {\n if (typeof tokens[i] === 'object') {\n matches[i] = new RegExp('^' + tokens[i].pattern + '$')\n }\n }\n\n return function (obj) {\n var path = ''\n\n obj = obj || {}\n\n for (var i = 0; i < tokens.length; i++) {\n var key = tokens[i]\n\n if (typeof key === 'string') {\n path += key\n\n continue\n }\n\n var value = obj[key.name]\n\n if (value == null) {\n if (key.optional) {\n continue\n } else {\n throw new TypeError('Expected \"' + key.name + '\" to be defined')\n }\n }\n\n if (isarray(value)) {\n if (!key.repeat) {\n throw new TypeError('Expected \"' + key.name + '\" to not repeat')\n }\n\n if (value.length === 0) {\n if (key.optional) {\n continue\n } else {\n throw new TypeError('Expected \"' + key.name + '\" to not be empty')\n }\n }\n\n for (var j = 0; j < value.length; j++) {\n if (!matches[i].test(value[j])) {\n throw new TypeError('Expected all \"' + key.name + '\" to match \"' + key.pattern + '\"')\n }\n\n path += (j === 0 ? key.prefix : key.delimiter) + encodeURIComponent(value[j])\n }\n\n continue\n }\n\n if (!matches[i].test(value)) {\n throw new TypeError('Expected \"' + key.name + '\" to match \"' + key.pattern + '\"')\n }\n\n path += key.prefix + encodeURIComponent(value)\n }\n\n return path\n }\n}\n\n/**\n * Escape a regular expression string.\n *\n * @param {String} str\n * @return {String}\n */\nfunction escapeString (str) {\n return str.replace(/([.+*?=^!:${}()[\\]|\\/])/g, '\\\\$1')\n}\n\n/**\n * Escape the capturing group by escaping special characters and meaning.\n *\n * @param {String} group\n * @return {String}\n */\nfunction escapeGroup (group) {\n return group.replace(/([=!:$\\/()])/g, '\\\\$1')\n}\n\n/**\n * Attach the keys as a property of the regexp.\n *\n * @param {RegExp} re\n * @param {Array} keys\n * @return {RegExp}\n */\nfunction attachKeys (re, keys) {\n re.keys = keys\n return re\n}\n\n/**\n * Get the flags for a regexp from the options.\n *\n * @param {Object} options\n * @return {String}\n */\nfunction flags (options) {\n return options.sensitive ? '' : 'i'\n}\n\n/**\n * Pull out keys from a regexp.\n *\n * @param {RegExp} path\n * @param {Array} keys\n * @return {RegExp}\n */\nfunction regexpToRegexp (path, keys) {\n // Use a negative lookahead to match only capturing groups.\n var groups = path.source.match(/\\((?!\\?)/g)\n\n if (groups) {\n for (var i = 0; i < groups.length; i++) {\n keys.push({\n name: i,\n prefix: null,\n delimiter: null,\n optional: false,\n repeat: false,\n pattern: null\n })\n }\n }\n\n return attachKeys(path, keys)\n}\n\n/**\n * Transform an array into a regexp.\n *\n * @param {Array} path\n * @param {Array} keys\n * @param {Object} options\n * @return {RegExp}\n */\nfunction arrayToRegexp (path, keys, options) {\n var parts = []\n\n for (var i = 0; i < path.length; i++) {\n parts.push(pathToRegexp(path[i], keys, options).source)\n }\n\n var regexp = new RegExp('(?:' + parts.join('|') + ')', flags(options))\n\n return attachKeys(regexp, keys)\n}\n\n/**\n * Create a path regexp from string input.\n *\n * @param {String} path\n * @param {Array} keys\n * @param {Object} options\n * @return {RegExp}\n */\nfunction stringToRegexp (path, keys, options) {\n var tokens = parse(path)\n var re = tokensToRegExp(tokens, options)\n\n // Attach keys back to the regexp.\n for (var i = 0; i < tokens.length; i++) {\n if (typeof tokens[i] !== 'string') {\n keys.push(tokens[i])\n }\n }\n\n return attachKeys(re, keys)\n}\n\n/**\n * Expose a function for taking tokens and returning a RegExp.\n *\n * @param {Array} tokens\n * @param {Array} keys\n * @param {Object} options\n * @return {RegExp}\n */\nfunction tokensToRegExp (tokens, options) {\n options = options || {}\n\n var strict = options.strict\n var end = options.end !== false\n var route = ''\n var lastToken = tokens[tokens.length - 1]\n var endsWithSlash = typeof lastToken === 'string' && /\\/$/.test(lastToken)\n\n // Iterate over the tokens and create our regexp string.\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i]\n\n if (typeof token === 'string') {\n route += escapeString(token)\n } else {\n var prefix = escapeString(token.prefix)\n var capture = token.pattern\n\n if (token.repeat) {\n capture += '(?:' + prefix + capture + ')*'\n }\n\n if (token.optional) {\n if (prefix) {\n capture = '(?:' + prefix + '(' + capture + '))?'\n } else {\n capture = '(' + capture + ')?'\n }\n } else {\n capture = prefix + '(' + capture + ')'\n }\n\n route += capture\n }\n }\n\n // In non-strict mode we allow a slash at the end of match. If the path to\n // match already ends with a slash, we remove it for consistency. The slash\n // is valid at the end of a path match, not in the middle. This is important\n // in non-ending mode, where \"/test/\" shouldn't match \"/test//route\".\n if (!strict) {\n route = (endsWithSlash ? route.slice(0, -2) : route) + '(?:\\\\/(?=$))?'\n }\n\n if (end) {\n route += '$'\n } else {\n // In non-ending mode, we need the capturing groups to match as much as\n // possible by using a positive lookahead to the end or next path segment.\n route += strict && endsWithSlash ? '' : '(?=\\\\/|$)'\n }\n\n return new RegExp('^' + route, flags(options))\n}\n\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n *\n * @param {(String|RegExp|Array)} path\n * @param {Array} [keys]\n * @param {Object} [options]\n * @return {RegExp}\n */\nfunction pathToRegexp (path, keys, options) {\n keys = keys || []\n\n if (!isarray(keys)) {\n options = keys\n keys = []\n } else if (!options) {\n options = {}\n }\n\n if (path instanceof RegExp) {\n return regexpToRegexp(path, keys, options)\n }\n\n if (isarray(path)) {\n return arrayToRegexp(path, keys, options)\n }\n\n return stringToRegexp(path, keys, options)\n}\n","module.exports = Array.isArray || function (arr) {\n return Object.prototype.toString.call(arr) == '[object Array]';\n};\n"]} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
73212
8
19
289