ionic-angular
Version:
A powerful framework for building mobile and progressive web apps with JavaScript and Angular
42 lines • 1.49 kB
JavaScript
(function (factory) {
if (typeof module === "object" && typeof module.exports === "object") {
var v = factory(require, exports);
if (v !== undefined) module.exports = v;
}
else if (typeof define === "function" && define.amd) {
define(["require", "exports"], factory);
}
})(function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @hidden
*/
var QueryParams = (function () {
function QueryParams() {
this.data = {};
}
QueryParams.prototype.parseUrl = function (url) {
if (url) {
var startIndex = url.indexOf('?');
if (startIndex > -1) {
var queries = url.slice(startIndex + 1).split('&');
for (var i = 0; i < queries.length; i++) {
if (queries[i].indexOf('=') > 0) {
var split = queries[i].split('=');
if (split.length > 1) {
this.data[split[0].toLowerCase()] = split[1].split('#')[0];
}
}
}
}
}
};
QueryParams.prototype.get = function (key) {
return this.data[key.toLowerCase()];
};
return QueryParams;
}());
exports.QueryParams = QueryParams;
});
//# sourceMappingURL=query-params.js.map