mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
415 B
16 lines
415 B
8 years ago
|
'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
|
||
|
};
|