UNPKG

258 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.hget = hget;
7function hget(key, hashKey) {
8 var hash = this.data.get(key);
9
10 if (!hash || hash[hashKey] === undefined) {
11 return null;
12 }
13
14 return hash[hashKey];
15}
\No newline at end of file