Description: It has no sense require a module only for a simple
 replaces chain.
 Import the function directly from upstream: 
  https://github.com/joaquimserafim/base64-url/blob/master/index.js
 Author: Joaquim Serafim
 License: ISC
Author: Leo Iannacone <l3on@ubuntu.com>
Forwarded: not-needed

Index: node-uid-safe/index.js
===================================================================
--- node-uid-safe.orig/index.js
+++ node-uid-safe/index.js
@@ -12,8 +12,11 @@
  * @private
  */
 
-var escape = require('base64-url').escape
 var randomBytes = require('random-bytes')
+// from https://github.com/joaquimserafim/base64-url/blob/master/index.js
+function escape (str) {
+  return str.replace(/\+/g, '-').replace(/\//g, '_').replace(/=/g, '');
+};
 
 /**
  * Module exports.
