about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/util/link_header.js
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2019-01-02 16:07:33 +0100
committerThibaut Girka <thib@sitedethib.com>2019-01-02 16:07:33 +0100
commite77ceb1b29547ed89b4110b3cc3edc9ac325b620 (patch)
treef5ff0b5c3b1e8fd94691264f2bc147e5fa233ecb /app/javascript/flavours/glitch/util/link_header.js
parent1464620ddbd5bc4c49a7f68c46192d0919b24528 (diff)
[Glitch] Update dependencies for Node.js (2018-12-31)
Port compatibility changes from 8f5fdab5bf681ff45a07965940bc45c9061a2f89 to glitch-soc
Diffstat (limited to 'app/javascript/flavours/glitch/util/link_header.js')
-rw-r--r--app/javascript/flavours/glitch/util/link_header.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/app/javascript/flavours/glitch/util/link_header.js b/app/javascript/flavours/glitch/util/link_header.js
deleted file mode 100644
index a3e7ccf1c..000000000
--- a/app/javascript/flavours/glitch/util/link_header.js
+++ /dev/null
@@ -1,33 +0,0 @@
-import Link from 'http-link-header';
-import querystring from 'querystring';
-
-Link.parseAttrs = (link, parts) => {
-  let match = null;
-  let attr  = '';
-  let value = '';
-  let attrs = '';
-
-  let uriAttrs = /<(.*)>;\s*(.*)/gi.exec(parts);
-
-  if(uriAttrs) {
-    attrs = uriAttrs[2];
-    link  = Link.parseParams(link, uriAttrs[1]);
-  }
-
-  while(match = Link.attrPattern.exec(attrs)) { // eslint-disable-line no-cond-assign
-    attr  = match[1].toLowerCase();
-    value = match[4] || match[3] || match[2];
-
-    if( /\*$/.test(attr)) {
-      Link.setAttr(link, attr, Link.parseExtendedValue(value));
-    } else if(/%/.test(value)) {
-      Link.setAttr(link, attr, querystring.decode(value));
-    } else {
-      Link.setAttr(link, attr, value);
-    }
-  }
-
-  return link;
-};
-
-export default Link;