source: node_modules/es-toolkit/dist/compat/object/property.js@ ba17441

Last change on this file since ba17441 was a762898, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Added visualizations

  • Property mode set to 100644
File size: 257 bytes
Line 
1'use strict';
2
3Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
5const get = require('./get.js');
6
7function property(path) {
8 return function (object) {
9 return get.get(object, path);
10 };
11}
12
13exports.property = property;
Note: See TracBrowser for help on using the repository browser.