node/lib/internal/querystring.js
Timothy Gu 8dbd562590
url: fix surrogate handling in encodeAuth()
Also factor out common parts in querystring and url.

Backport-of: https://github.com/nodejs/node/pull/11161
2017-02-21 21:14:24 -05:00

15 lines
415 B
JavaScript

'use strict';
const hexTable = new Array(256);
for (var i = 0; i < 256; ++i)
hexTable[i] = '%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase();
// Instantiating this is faster than explicitly calling `Object.create(null)`
// to get a "clean" empty object (tested with v8 v4.9).
function StorageObject() {}
StorageObject.prototype = Object.create(null);
module.exports = {
hexTable,
StorageObject
};