UNPKG

415 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.expose = void 0;
7
8var _require = require('./dictionary'),
9 dictionary = _require.dictionary;
10/**
11 * Create a dictionary that is not enumerable.
12 *
13 * @param {Object} object
14 * @return {Object}
15 */
16
17
18var expose = function expose(object) {
19 return dictionary(object, {
20 enumerable: false
21 });
22};
23
24exports.expose = expose;
\No newline at end of file