UNPKG

252 BJavaScriptView Raw
1const dictionary = require('./dictionary');
2
3/**
4 * Create a dictionary that is not enumerable.
5 *
6 * @param {Object} object
7 * @return {Object}
8 */
9const expose = object =>
10 dictionary(object, {
11 enumerable: false,
12 });
13
14module.exports = expose;