Преглед на файлове

added urlQueryParameter helper function

Alexander Rose преди 6 години
родител
ревизия
4257279026
променени са 1 файла, в които са добавени 12 реда и са изтрити 0 реда
  1. 12 0
      src/mol-util/url-query.ts

+ 12 - 0
src/mol-util/url-query.ts

@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
+ *
+ * @author Alexander Rose <alexander.rose@weirdbyte.de>
+ */
+
+export function urlQueryParameter (id: string) {
+    if (typeof window === 'undefined') return undefined
+    const a = new RegExp(`${id}=([^&#=]*)`)
+    const m = a.exec(window.location.search)
+    return m ? decodeURIComponent(m[1]) : undefined
+}