UNPKG

trainingproject

Version:

A module to teach you how to module.

13 lines (10 loc) 202 B
"use strict"; var makeFlat = require("../lib/makeFlat"); module.exports = function (object) { var flat = makeFlat(object, {}); return { get: function lookup(key) { return flat[key]; } }; };